Files
deer-flow/extensions_config.example.json

42 lines
954 B
JSON
Raw Normal View History

2026-01-20 13:57:36 +08:00
{
"mcpServers": {
"filesystem": {
"enabled": false,
"type": "stdio",
2026-01-20 13:57:36 +08:00
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/files"
],
2026-01-20 13:57:36 +08:00
"env": {},
"description": "Provides filesystem access within allowed directories"
},
"github": {
"enabled": false,
"type": "stdio",
2026-01-20 13:57:36 +08:00
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-github"
],
2026-01-20 13:57:36 +08:00
"env": {
"GITHUB_TOKEN": "$GITHUB_TOKEN"
},
"description": "GitHub MCP server for repository operations"
},
"postgres": {
"enabled": false,
"type": "stdio",
2026-01-20 13:57:36 +08:00
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-postgres",
"postgresql://localhost/mydb"
],
2026-01-20 13:57:36 +08:00
"env": {},
"description": "PostgreSQL database access"
}
},
"skills": {}
}