forked from mondaycom/mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
36 lines (36 loc) · 990 Bytes
/
server.json
File metadata and controls
36 lines (36 loc) · 990 Bytes
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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-10-17/server.schema.json",
"name": "com.monday/monday.com",
"description": "MCP server for monday.com integration.",
"repository": {
"url": "https://github.com/mondaycom/mcp",
"source": "github"
},
"version": "0.0.1",
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.monday.com/mcp",
"headers": [
{
"name": "Authorization",
"description": "monday.com API token (format: 'Bearer your_token_here' or just 'your_token_here')",
"isRequired": false,
"isSecret": true
}
]
},
{
"type": "sse",
"url": "https://mcp.monday.com/sse",
"headers": [
{
"name": "Authorization",
"description": "monday.com API token (format: 'Bearer your_token_here' or just 'your_token_here')",
"isRequired": false,
"isSecret": true
}
]
}
]
}