23 lines
660 B
JSON
23 lines
660 B
JSON
{
|
|
"mcpServers": {
|
|
"filesystem": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed/dir"],
|
|
"description": "Read/write files inside the allowed directory."
|
|
},
|
|
"github": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-github"],
|
|
"env": {
|
|
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_xxx"
|
|
},
|
|
"description": "Search repos, read issues, open PRs on GitHub."
|
|
},
|
|
"sqlite": {
|
|
"command": "uvx",
|
|
"args": ["mcp-server-sqlite", "--db-path", "/path/to/db.sqlite"],
|
|
"description": "Query a local SQLite database."
|
|
}
|
|
}
|
|
}
|