Files
Rohit Ghumare c3f43d8b61 Expand toolkit to 135 agents, 120 plugins, 796 total files
- 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
2026-02-04 21:08:28 +00:00

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."
}
}
}