-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathmcp.example.json
More file actions
85 lines (85 loc) · 2.66 KB
/
Copy pathmcp.example.json
File metadata and controls
85 lines (85 loc) · 2.66 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"mcpServers": {
"everything": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"],
"description": "Basic utility tools (echo, add, etc.) - great for testing"
},
"context7": {
"type": "sse",
"url": "https://mcp.context7.com/sse",
"description": "Library documentation lookup - no API key needed"
},
"mcping": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@toolprint/mcping-mcp@latest"],
"description": "Desktop notifications (macOS) - useful for long tasks"
},
"filesystem": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "."],
"description": "File system access - read/write local files"
},
"sqlite": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sqlite",
"path/to/your/database.db"
],
"description": "SQLite database access - supports Datasette metadata"
},
"git": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-git"],
"description": "Git repository management - works with local repos"
},
"time": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-time"],
"description": "Time and date utilities - timezone conversions, scheduling"
},
"fetch": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-fetch"],
"description": "HTTP requests - fetch web content without API keys"
},
"memory": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"],
"description": "Knowledge graph memory - store and retrieve information"
},
"python": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-server-python", "--python", "python3"],
"description": "Python code execution - requires Python installed"
},
"mcp-docker": {
"type": "stdio",
"command": "uvx",
"args": ["mcp-server-docker"],
"description": "Docker container management - requires Docker"
},
"sequential-thinking": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-sequential-thinking"],
"description": "Step-by-step reasoning for complex problems"
},
"browser": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"],
"description": "Browser automation - screenshots, web scraping"
}
}
}