-
Notifications
You must be signed in to change notification settings - Fork 191
Expand file tree
/
Copy pathmcp.json
More file actions
124 lines (124 loc) · 2.24 KB
/
mcp.json
File metadata and controls
124 lines (124 loc) · 2.24 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"servers": {
"aspire": {
"type": "stdio",
"command": "aspire",
"args": [
"mcp",
"start"
]
},
"chrome-devtools": {
"command": "npx",
"args": [
"chrome-devtools-mcp@latest"
]
},
"context7": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@upstash/context7-mcp@latest"
]
},
"deepwiki": {
"url": "https://mcp.deepwiki.com/sse",
"type": "http"
},
"ESLint": {
"type": "stdio",
"command": "npx",
"args": ["eslint", "--mcp"]
},
"github": {
"url": "https://api.githubcopilot.com/mcp/",
"type": "http"
},
"huggingface": {
"url": "https://huggingface.co/mcp",
"headers": {
"Authorization": "Bearer ${input:hf_token}"
},
"type": "http"
},
"markitdown": {
"command": "uvx",
"args": [
"markitdown-mcp"
],
"type": "stdio"
},
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"env": {
"MEMORY_FILE_PATH": "${input:memory_file_path}"
},
"type": "stdio"
},
"microsoft-docs": {
"url": "https://learn.microsoft.com/api/mcp",
"type": "http"
},
"microsoft/clarity-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"@microsoft/clarity-mcp-server@latest",
"--clarity_api_token",
"${input:clarity_api_token}"
]
},
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
],
"type": "stdio"
},
"sequentialthinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"type": "stdio"
},
"svelte": {
"url": "https://mcp.svelte.dev/mcp"
},
"terraform": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"hashicorp/terraform-mcp-server"
],
"type": "stdio"
}
},
"inputs": [
{
"id": "hf_token",
"description": "Your Hugging Face API token",
"type": "promptString"
},
{
"id": "memory_file_path",
"type": "promptString",
"description": "Path to the memory storage file (optional)",
"password": false
},
{
"id": "clarity_api_token",
"type": "promptString",
"description": "Microsoft Clarity API Token (from Settings → Data Export → Generate API token)",
"password": true
}
]
}