1111 "name" : " modelcontextprotocol"
1212 },
1313 "license" : " MIT" ,
14- "categories" : [
15- " Databases"
16- ],
17- "tags" : [
18- " sqlite" ,
19- " database" ,
20- " business insights"
21- ],
14+ "categories" : [" Databases" ],
15+ "tags" : [" sqlite" , " database" , " business insights" ],
2216 "installations" : {
2317 "docker" : {
2418 "type" : " docker" ,
2721 " run" ,
2822 " --rm" ,
2923 " -i" ,
30- " -v " ,
31- " mcp-test:/mcp " ,
24+ " --mount " ,
25+ " type=bind,src=${DB_PATH},dst=/data/database.db " ,
3226 " mcp/sqlite" ,
3327 " --db-path" ,
34- " /mcp/test .db"
28+ " /data/database .db"
3529 ]
3630 }
3731 },
32+ "arguments" : {
33+ "DB_PATH" : {
34+ "description" : " The path to the SQLite database file on your local machine." ,
35+ "required" : true ,
36+ "example" : " /path/to/your/database.db"
37+ }
38+ },
3839 "examples" : [
3940 {
40- "title" : " Interactive SQL Analysis" ,
41- "description" : " Guides users through database operations and insights generation." ,
42- "prompt" : " mcp-demo -topic [business_domain]"
41+ "title" : " List Tables" ,
42+ "description" : " List all tables in the database." ,
43+ "prompt" : " List all the tables in my database"
44+ },
45+ {
46+ "title" : " Query Data" ,
47+ "description" : " Run a SELECT query to get data from a table." ,
48+ "prompt" : " Show me the first 10 rows from the 'customers' table"
4349 }
4450 ],
4551 "tools" : [
5460 "description" : " SELECT SQL query to execute"
5561 }
5662 },
57- "required" : [
58- " query"
59- ]
63+ "required" : [" query" ]
6064 }
6165 },
6266 {
7074 "description" : " SQL query to execute"
7175 }
7276 },
73- "required" : [
74- " query"
75- ]
77+ "required" : [" query" ]
7678 }
7779 },
7880 {
8688 "description" : " CREATE TABLE SQL statement"
8789 }
8890 },
89- "required" : [
90- " query"
91- ]
91+ "required" : [" query" ]
9292 }
9393 },
9494 {
110110 "description" : " Name of the table to describe"
111111 }
112112 },
113- "required" : [
114- " table_name"
115- ]
113+ "required" : [" table_name" ]
116114 }
117115 },
118116 {
126124 "description" : " Business insight discovered from data analysis"
127125 }
128126 },
129- "required" : [
130- " insight"
131- ]
127+ "required" : [" insight" ]
132128 }
133129 }
134130 ],
135131 "is_official" : true ,
136132 "is_archived" : true
137- }
133+ }
0 commit comments