molecule-mcp-server/package.json
2026-04-16 03:50:00 -07:00

33 lines
770 B
JSON

{
"name": "@molecule-ai/mcp-server",
"version": "1.0.0",
"description": "MCP server for Molecule AI Agent Team \u2014 manage workspaces, agents, and skills from any AI coding tool",
"type": "module",
"bin": {
"molecule-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^20.0.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"typescript": "^5.5.0"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Molecule-AI/molecule-mcp-server.git"
}
}