@elizaos/plugin-mcp 2.0.3-beta.2 → 2.0.3-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@elizaos/plugin-mcp",
3
- "version": "2.0.3-beta.2",
3
+ "version": "2.0.3-beta.4",
4
4
  "description": "elizaOS plugin to integrate with MCP (Model Context Protocol) servers",
5
5
  "type": "module",
6
6
  "main": "dist/node/index.js",
@@ -38,6 +38,7 @@
38
38
  }
39
39
  },
40
40
  "files": [
41
+ "registry-entry.json",
41
42
  "dist"
42
43
  ],
43
44
  "keywords": [],
@@ -56,8 +57,8 @@
56
57
  "format:check": "bunx @biomejs/biome format ."
57
58
  },
58
59
  "dependencies": {
59
- "@elizaos/core": "2.0.3-beta.2",
60
- "@elizaos/security": "2.0.3-beta.2",
60
+ "@elizaos/core": "2.0.3-beta.4",
61
+ "@elizaos/security": "2.0.3-beta.4",
61
62
  "@modelcontextprotocol/sdk": "^1.7.0",
62
63
  "ajv": "^8.17.1",
63
64
  "json5": "^2.2.3"
@@ -69,7 +70,7 @@
69
70
  "typescript": "^6.0.3"
70
71
  },
71
72
  "peerDependencies": {
72
- "@elizaos/core": "2.0.3-beta.2"
73
+ "@elizaos/core": "2.0.3-beta.4"
73
74
  },
74
75
  "publishConfig": {
75
76
  "access": "public"
@@ -100,5 +101,5 @@
100
101
  "node": "Node.js build available via exports.node"
101
102
  }
102
103
  },
103
- "gitHead": "82fe0f44215954c2417328203f5bd6510985c1fc"
104
+ "gitHead": "f76f55793a0fb8d6b869dd8ddce03970de061e34"
104
105
  }
@@ -0,0 +1,44 @@
1
+ {
2
+ "id": "mcp",
3
+ "name": "Mcp",
4
+ "description": "ElizaOS plugin allowing agents to connect to MCP servers",
5
+ "npmName": "@elizaos/plugin-mcp",
6
+ "version": "2.0.0-beta.0",
7
+ "source": "bundled",
8
+ "tags": ["mcp"],
9
+ "config": {
10
+ "mcp": {
11
+ "type": "json",
12
+ "required": false,
13
+ "sensitive": false,
14
+ "label": "Mcp",
15
+ "help": "Serialized (e.g., JSON) configuration that defines MCP settings and server definitions; read at runtime to establish MCP server connections.",
16
+ "advanced": false
17
+ },
18
+ "PATH": {
19
+ "type": "string",
20
+ "required": false,
21
+ "sensitive": false,
22
+ "label": "Path",
23
+ "help": "System PATH inherited from the host environment and forwarded to child processes when launching an MCP server through stdio transport.",
24
+ "advanced": false
25
+ }
26
+ },
27
+ "render": {
28
+ "visible": true,
29
+ "pinTo": [],
30
+ "style": "card",
31
+ "icon": "Puzzle",
32
+ "group": "devtools",
33
+ "groupOrder": 5,
34
+ "actions": ["enable", "configure"]
35
+ },
36
+ "resources": {
37
+ "homepage": "https://github.com/elizaos-plugins/plugin-mcp#readme",
38
+ "repository": "https://github.com/elizaos-plugins/plugin-mcp",
39
+ "setupGuideUrl": "https://docs.eliza.ai/plugin-setup-guide#mcp-model-context-protocol"
40
+ },
41
+ "dependsOn": [],
42
+ "kind": "plugin",
43
+ "subtype": "devtools"
44
+ }