-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
51 lines (51 loc) · 1.42 KB
/
server.json
File metadata and controls
51 lines (51 loc) · 1.42 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.razroo/cold-agent-mcp",
"title": "Cold Agent MCP",
"description": "Operate Cold Agent sales workspaces, campaigns, leads, deliverability, phone, and SDR workflows from MCP clients.",
"version": "0.1.1",
"repository": {
"url": "https://github.com/razroo/cold-agent-mcp",
"source": "github"
},
"remotes": [
{
"type": "streamable-http",
"url": "https://getcoldagent.com/api/mcp",
"headers": [
{
"name": "X-Cold-Agent-API-Key",
"description": "Cold Agent API key from Settings > API Keys.",
"isRequired": true,
"isSecret": true
}
]
}
],
"packages": [
{
"registryType": "npm",
"identifier": "@razroo/cold-agent-mcp",
"version": "0.1.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "COLD_AGENT_API_KEY",
"description": "Cold Agent API key from Settings > API Keys.",
"isRequired": true,
"format": "string",
"isSecret": true
},
{
"name": "COLD_AGENT_MCP_URL",
"description": "Optional Cold Agent MCP endpoint override.",
"isRequired": false,
"format": "uri",
"default": "https://getcoldagent.com/api/mcp"
}
]
}
]
}