Files
deer-flow/extensions_config.example.json

36 lines
905 B
JSON
Raw Normal View History

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