-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.05 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
{
"name": "@relayplane/mcp-server",
"version": "0.1.4",
"description": "MCP server for efficient AI workflow orchestration with RelayPlane",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"mcp-server": "./dist/index.js",
"relayplane-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "echo 'MCP server is run via Claude Desktop, not as dev server' && exit 0",
"start": "tsx src/index.ts",
"test": "echo 'No tests configured yet' && exit 0",
"test:watch": "vitest",
"lint": "eslint src --ext .ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"relayplane",
"workflows",
"ai",
"llm"
],
"author": "RelayPlane Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@relayplane/sdk": "^1.1.4",
"@relayplane/adapters": "^0.1.3",
"@relayplane/engine": "^0.1.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^20.10.0",
"typescript": "^5.3.3",
"tsx": "^4.0.0",
"vitest": "^1.1.0"
}
}