forked from rohitg00/awesome-claude-code-toolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-science.json
More file actions
37 lines (37 loc) · 1.44 KB
/
data-science.json
File metadata and controls
37 lines (37 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"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."
}
}
}