-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "@razroo/cold-agent-mcp",
"version": "0.1.1",
"description": "Stdio bridge for the hosted Cold Agent MCP server, including sales, deliverability, and phone workflows.",
"type": "module",
"license": "MIT",
"mcpName": "io.github.razroo/cold-agent-mcp",
"bin": {
"cold-agent-mcp": "bin/cold-agent-mcp.js"
},
"exports": {
".": "./src/proxy.js"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE",
"server.json"
],
"scripts": {
"check": "node --check bin/cold-agent-mcp.js && node --check src/proxy.js && node --check test/proxy.test.js",
"test": "node --test"
},
"engines": {
"node": ">=18"
},
"keywords": [
"cold-agent",
"mcp",
"model-context-protocol",
"sales",
"outbound",
"sdr"
],
"homepage": "https://getcoldagent.com/mcp",
"repository": {
"type": "git",
"url": "git+https://github.com/razroo/cold-agent-mcp.git"
},
"bugs": {
"url": "https://github.com/razroo/cold-agent-mcp/issues"
},
"publishConfig": {
"access": "public"
}
}