We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7aa81e1 commit 784ec4eCopy full SHA for 784ec4e
docs/customize/deep-dives/mcp.mdx
@@ -100,17 +100,17 @@ server block to your [config file](./configuration.md):
100
<Tab title="JSON">
101
```json title="config.json"
102
{
103
- "experimental": {
104
- "modelContextProtocolServers": [
105
- {
106
- "transport": {
107
- "type": "stdio",
108
- "command": "uvx",
109
- "args": ["mcp-server-sqlite", "--db-path", "/path/to/your/database.db"]
110
- }
111
112
- ]
113
+ "mcpServers": [
+ {
+ "name": "SQLite MCP",
+ "command": "npx",
+ "args": [
+ "-y",
+ "mcp-sqlite",
+ "/path/to/your/database.db"
+ ]
+ }
114
}
115
````
116
0 commit comments