-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathmcp-servers-config.sample.json
46 lines (46 loc) · 1.65 KB
/
mcp-servers-config.sample.json
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
{
"mcpServers": {
"sqlite": {
"command": "uvx",
"description": "Database operations with SQLite, e.g., describe, create, and query tables.",
"args": [
"mcp-server-sqlite",
"--db-path",
"database.db"
]
},
"github": {
"command": "npx",
"description": "GitHub operations for code projects, e.g., create, modify, or search repositories, issues, and code.",
"args": [
"-y",
"@modelcontextprotocol/server-github"
]
},
"filesystem": {
"command": "npx",
"description": "Filesystem operations on your files, e.g., search, copy, move, and delete files.",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/filesystem",
"/path/to/current/project"
]
},
"jira": {
"description": "Project management and issue tracking, e.g., get, modify, or search projects, issues, bugs, etc.",
"command": "npx",
"args": [
"-y",
"/path/to/openapi-specs/jira-openapi.json"
],
"env": {
"OPENAPI_MCP_HEADERS": "{\"Authorization\": \"Basic [base64 encoded version of: <[email protected]>]\"}",
"JIRA_HOST": "your_workspace.atlassian.net",
"JIRA_EMAIL": "[email protected]",
"JIRA_API_TOKEN": "YOUR.JIRA.TOKEN"
}
}
}
}