{ "name": "@elizaos/plugin-mcp", "version": "2.0.3-beta.7", "description": "elizaOS plugin to integrate with MCP (Model Context Protocol) servers", "type": "module", "main": "dist/node/index.js", "module": "dist/node/index.js", "types": "dist/index.d.ts", "sideEffects": false, "repository": { "type": "git", "url": "git+https://github.com/elizaos-plugins/plugin-mcp.git" }, "exports": { "./package.json": "./package.json", ".": { "types": "./dist/index.d.ts", "eliza-source": { "types": "./src/index.ts", "import": "./src/index.ts", "default": "./src/index.ts" }, "node": { "types": "./dist/node/index.d.ts", "import": "./dist/node/index.js", "require": "./dist/cjs/index.cjs", "default": "./dist/node/index.js" }, "import": "./dist/node/index.js", "require": "./dist/cjs/index.cjs", "default": "./dist/node/index.js" }, "./*.css": "./dist/*.css", "./*": { "types": "./dist/*.d.ts", "import": "./dist/*.js", "default": "./dist/*.js" } }, "files": [ "registry-entry.json", "dist" ], "keywords": [], "author": "elizaOS", "license": "MIT", "scripts": { "build": "bun run build.ts", "build:ts": "bun run build.ts", "dev": "bun --hot build.ts", "clean": "node ../../packages/scripts/rm-path-recursive.mjs dist .turbo", "test": "vitest run --config vitest.config.ts", "typecheck": "tsgo --noEmit", "lint": "bunx @biomejs/biome check --write --unsafe .", "lint:check": "bunx @biomejs/biome check .", "format": "bunx @biomejs/biome format --write .", "format:check": "bunx @biomejs/biome format ." }, "dependencies": { "@elizaos/core": "workspace:*", "@elizaos/security": "workspace:*", "@modelcontextprotocol/sdk": "^1.7.0", "ajv": "^8.17.1", "json5": "^2.2.3" }, "devDependencies": { "@biomejs/biome": "2.5.3", "@types/json-schema": "^7.0.15", "@types/node": "^25.0.3", "typescript": "^6.0.3" }, "peerDependencies": { "@elizaos/core": "workspace:*" }, "publishConfig": { "access": "public" }, "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 } } }, "eliza": { "platforms": [ "node" ], "runtime": "node", "platformDetails": { "node": "Node.js build available via exports.node" } } }