Skip to content

Commit 784ec4e

Browse files
committed
fix: json mcpServers
1 parent 7aa81e1 commit 784ec4e

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/customize/deep-dives/mcp.mdx

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,17 @@ server block to your [config file](./configuration.md):
100100
<Tab title="JSON">
101101
```json title="config.json"
102102
{
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-
}
103+
"mcpServers": [
104+
{
105+
"name": "SQLite MCP",
106+
"command": "npx",
107+
"args": [
108+
"-y",
109+
"mcp-sqlite",
110+
"/path/to/your/database.db"
111+
]
112+
}
113+
]
114114
}
115115
````
116116

0 commit comments

Comments
 (0)