11---
2- description : |
3- A prompt to seed the database with initial data and demonstrate what you can do with an SQLite MCP Server + Claude
2+ description : A prompt to seed the database with initial data and demonstrate what you can do with an SQLite MCP Server + Claude
43model : claude-3-5-sonnet-20241022
54tools :
65 - name : read-query
76 description : Execute a SELECT query on the SQLite database
8- parameters : &query
7+ parameters :
98 type : object
109 properties :
1110 query :
1211 type : string
1312 description : SELECT SQL query to execute
14- container : &sqlite
15- image : vonwig/sqlite:latest
13+ container : &sqlite-container
14+ image : &sqlite-image vonwig/sqlite:latest
1615 command :
17- - " /mcp/test1.db"
16+ - &db "/mcp/test1.db"
1817 - " {{query|safe}}"
19- mounts : &mounts
18+ volumes : &mounts
2019 - " mcp-test:/mcp"
2120 - name : write-query
2221 description : Execute an INSERT, UPDATE, or DELETE query on the SQLite database
23- parameters : *query
24- container : *sqlite
22+ parameters :
23+ type : object
24+ properties :
25+ query :
26+ type : string
27+ description : SQL query to execute
28+ container : *sqlite-container
2529 - name : create-table
2630 description : Create a new table in the SQLite database
27- parameters : *query
28- container : *sqlite
31+ parameters :
32+ type : object
33+ properties :
34+ query :
35+ type : string
36+ description : CREATE TABLE SQL statement
37+ container : *sqlite-container
2938 - name : list-tables
3039 description : List all tables in the SQLite database
3140 container :
32- image : vonwig/ sqlite:latest
41+ image : * sqlite-image
3342 command :
34- - " /mcp/test1.db "
43+ - *db
3544 - " SELECT name from sqlite_master WHERE type='table'"
36- mounts : *mounts
45+ volumes : *mounts
3746 - name : describe-table
3847 description : Get the schema information for a specific table
3948 parameters :
@@ -43,11 +52,11 @@ tools:
4352 type : string
4453 description : Name of the table to describe
4554 container :
46- image : vonwig/ sqlite:latest
55+ image : * sqlite-image
4756 command :
48- - " /mcp/test1.db "
57+ - *db
4958 - " PRAGMA table_info({{table_name}})"
50- mounts : *mounts
59+ volumes : *mounts
5160 - name : append-insight
5261 description : Add a business insight to the memo
5362 parameters :
6170 command :
6271 - " -c"
6372 - " echo '{{insight|safe}}' >> /mcp/insights.txt"
64- mounts : *mounts
73+ volumes : *mounts
6574prompt-format : django
6675parameter-values :
6776 topic : Ocean Conservation
0 commit comments