- Add 60 new agents across all 10 categories (75 -> 135) - Add 95 new plugins with command files (25 -> 120) - Update all agents to use model: opus - Update README with complete plugin/agent tables - Update marketplace.json with all 120 plugins
38 lines
1.4 KiB
JSON
38 lines
1.4 KiB
JSON
{
|
|
"mcpServers": {
|
|
"jupyter": {
|
|
"command": "uvx",
|
|
"args": ["mcp-jupyter"],
|
|
"description": "Create, edit, and execute Jupyter notebook cells. Manage kernels and inspect outputs."
|
|
},
|
|
"sqlite": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-sqlite", "/path/to/analysis.db"],
|
|
"description": "Query SQLite databases for local data exploration, schema inspection, and ad-hoc analytics."
|
|
},
|
|
"postgres": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-postgres"],
|
|
"env": {
|
|
"POSTGRES_CONNECTION_STRING": "postgresql://analyst:password@localhost:5432/warehouse"
|
|
},
|
|
"description": "Query the data warehouse for production analytics, reporting, and data validation."
|
|
},
|
|
"filesystem": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/data-project"],
|
|
"description": "Read CSV, Parquet, and JSON data files. Write processed outputs and reports."
|
|
},
|
|
"fetch": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-fetch"],
|
|
"description": "Fetch datasets from public APIs, download documentation, and access data catalogs."
|
|
},
|
|
"memory": {
|
|
"command": "npx",
|
|
"args": ["-y", "@modelcontextprotocol/server-memory"],
|
|
"description": "Track experiment results, feature engineering decisions, and model performance across sessions."
|
|
}
|
|
}
|
|
}
|