-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"name": "@clicksend/clicksend-mcp-server",
"version": "2025.2.24",
"description": "A Model Context Protocol (MCP) server that enables Claude and other AI assistants to send SMS and MMS messages using ClickSend.",
"license": "MIT",
"author": "ClickSend",
"type": "module",
"bin": {
"clicksend-mcp-server": "build/clicksend-mcp.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && chmod 755 build/clicksend-mcp.js && cp src/openapi-specs.yaml build/openapi-specs.yaml",
"prepare": "npm run build",
"watch": "tsc --watch"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^1.8.0",
"axios": "^1.8.4",
"chrono-node": "^2.8.4",
"clicksend": "^5.0.79",
"dotenv": "^16.4.7",
"http": "^0.0.1-security",
"js-yaml": "4.1.0",
"request": "^2.88.2",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.13.14",
"shx": "^0.3.4",
"typescript": "^5.3.3"
}
}