forked from elizaos-plugins/plugin-mcp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.12 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.12 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@elizaos/plugin-mcp",
"description": "ElizaOS plugin to integrate with MCP (Model Context Protocol) servers",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"version": "1.0.7",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/elizaos-plugins/plugin-mcp.git"
},
"publishConfig": {
"access": "public"
},
"tags": [
"mcp",
"model",
"context",
"protocol",
"elizaos-plugins"
],
"scripts": {
"build": "bun build ./src/index.ts --outdir ./dist --target node --minify --treeshake",
"types": "bunx tsc --emitDeclarationOnly --outDir ./dist",
"check:write": "bunx @biomejs/biome check --write ./src",
"check": "bunx @biomejs/biome check ./src",
"ci": "bunx @biomejs/biome ci ./src",
"version:patch": "bunx bumpp patch --tag -y",
"version:minor": "bunx bumpp minor --tag -y",
"version:major": "bunx bumpp major --tag -y",
"release:patch": "bun run version:patch && git push --follow-tags",
"release:minor": "bun run version:minor && git push --follow-tags",
"release:major": "bun run version:major && git push --follow-tags"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "1.2.5",
"@types/json-schema": "^7.0.15",
"bumpp": "10.1.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@elizaos/core": "^1.0.4",
"@modelcontextprotocol/sdk": "^1.7.0",
"ajv": "^8.17.1",
"json5": "^2.2.3"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"PATH": {
"type": "string",
"description": "System PATH inherited from the host environment and forwarded to child processes when launching an MCP server through stdio transport.",
"required": false,
"sensitive": false
},
"mcp": {
"type": "string",
"description": "Serialized (e.g., JSON) configuration that defines MCP settings and server definitions; read at runtime to establish MCP server connections.",
"required": false,
"sensitive": false
}
}
}
}