@elizaos/plugin-mcp 1.0.0-beta.54
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/.github/workflows/npm-deploy.yml +122 -0
- package/.npmrc.template +2 -0
- package/README.md +234 -0
- package/biome.json +34 -0
- package/dist/index.js +1214 -0
- package/images/banner.jpg +0 -0
- package/images/logo.jpg +0 -0
- package/package.json +53 -0
|
Binary file
|
package/images/logo.jpg
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@elizaos/plugin-mcp",
|
|
3
|
+
"description": "ElizaOS plugin to integrate with MCP (Model Context Protocol) servers",
|
|
4
|
+
"module": "dist/index.js",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"type": "module",
|
|
8
|
+
"version": "1.0.0-beta.54",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/elizaos-plugins/plugin-mcp.git"
|
|
13
|
+
},
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"tags": [
|
|
18
|
+
"mcp",
|
|
19
|
+
"model",
|
|
20
|
+
"context",
|
|
21
|
+
"protocol",
|
|
22
|
+
"elizaos-plugins"
|
|
23
|
+
],
|
|
24
|
+
"scripts": {
|
|
25
|
+
"build": "bun build ./src/index.ts --outdir ./dist --target node --minify --treeshake",
|
|
26
|
+
"types": "bunx tsc --emitDeclarationOnly --outDir ./dist",
|
|
27
|
+
"check:write": "bunx @biomejs/biome check --write ./src",
|
|
28
|
+
"check": "bunx @biomejs/biome check ./src",
|
|
29
|
+
"ci": "bunx @biomejs/biome ci ./src",
|
|
30
|
+
"version:patch": "bunx bumpp patch --tag -y",
|
|
31
|
+
"version:minor": "bunx bumpp minor --tag -y",
|
|
32
|
+
"version:major": "bunx bumpp major --tag -y",
|
|
33
|
+
"release:patch": "bun run version:patch && git push --follow-tags",
|
|
34
|
+
"release:minor": "bun run version:minor && git push --follow-tags",
|
|
35
|
+
"release:major": "bun run version:major && git push --follow-tags"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@biomejs/biome": "1.9.4",
|
|
39
|
+
"@types/bun": "1.2.5",
|
|
40
|
+
"bumpp": "10.1.0",
|
|
41
|
+
"typescript": "^5.0.0"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@elizaos/core": "1.0.0-beta.53",
|
|
45
|
+
"@modelcontextprotocol/sdk": "^1.7.0",
|
|
46
|
+
"ajv": "^8.17.1",
|
|
47
|
+
"json5": "^2.2.3"
|
|
48
|
+
},
|
|
49
|
+
"agentConfig": {
|
|
50
|
+
"pluginType": "elizaos:plugin:1.0.0",
|
|
51
|
+
"pluginParameters": {}
|
|
52
|
+
}
|
|
53
|
+
}
|