@elizaos/plugin-mcp 1.0.1 → 1.0.2

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.
Files changed (2) hide show
  1. package/dist/index.js +372 -168
  2. package/package.json +24 -3
package/package.json CHANGED
@@ -5,7 +5,7 @@
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "type": "module",
8
- "version": "1.0.1",
8
+ "version": "1.0.2",
9
9
  "license": "MIT",
10
10
  "repository": {
11
11
  "type": "git",
@@ -42,13 +42,34 @@
42
42
  "typescript": "^5.0.0"
43
43
  },
44
44
  "dependencies": {
45
- "@elizaos/core": "^1.0.0",
45
+ "@elizaos/core": "^1.0.4",
46
46
  "@modelcontextprotocol/sdk": "^1.7.0",
47
47
  "ajv": "^8.17.1",
48
48
  "json5": "^2.2.3"
49
49
  },
50
50
  "agentConfig": {
51
51
  "pluginType": "elizaos:plugin:1.0.0",
52
- "pluginParameters": {}
52
+ "pluginParameters": {
53
+ "GITHUB_PERSONAL_ACCESS_TOKEN": {
54
+ "type": "string",
55
+ "description": "Personal access token used by the GitHub MCP server for authentication to GitHub APIs.",
56
+ "required": true
57
+ },
58
+ "GOOGLE_MAPS_API_KEY": {
59
+ "type": "string",
60
+ "description": "API key used by the Google Maps MCP server to access Google Maps services.",
61
+ "required": true
62
+ },
63
+ "PATH": {
64
+ "type": "string",
65
+ "description": "System PATH variable forwarded to MCP child processes when using stdio transport.",
66
+ "required": false
67
+ },
68
+ "mcp": {
69
+ "type": "string",
70
+ "description": "JSON string or configuration object that defines MCP server settings (e.g., server list and connection details).",
71
+ "required": false
72
+ }
73
+ }
53
74
  }
54
75
  }