-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp_servers.json
More file actions
86 lines (86 loc) · 2.37 KB
/
mcp_servers.json
File metadata and controls
86 lines (86 loc) · 2.37 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
86
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"description": "MCP Servers Configuration for Antigravity Agent",
"servers": [
{
"name": "filesystem",
"description": "Access to local filesystem operations",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/tmp"],
"enabled": false,
"env": {}
},
{
"name": "github",
"description": "GitHub API integration for repository management",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"enabled": false,
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "${GITHUB_TOKEN}"
}
},
{
"name": "postgres",
"description": "PostgreSQL database access",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres"],
"enabled": false,
"env": {
"POSTGRES_CONNECTION_STRING": "${DATABASE_URL}"
}
},
{
"name": "brave-search",
"description": "Web search using Brave Search API",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-brave-search"],
"enabled": false,
"env": {
"BRAVE_API_KEY": "${BRAVE_API_KEY}"
}
},
{
"name": "memory",
"description": "Persistent memory storage for the agent",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-memory"],
"enabled": false,
"env": {}
},
{
"name": "puppeteer",
"description": "Browser automation and web scraping",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"],
"enabled": false,
"env": {}
},
{
"name": "slack",
"description": "Slack workspace integration",
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-slack"],
"enabled": false,
"env": {
"SLACK_BOT_TOKEN": "${SLACK_BOT_TOKEN}",
"SLACK_TEAM_ID": "${SLACK_TEAM_ID}"
}
},
{
"name": "custom-http",
"description": "Example HTTP/Streamable HTTP server",
"transport": "http",
"url": "http://localhost:8000/mcp",
"enabled": false,
"env": {}
}
]
}