UNPKG

@answerai/answeragent-mcp

Version:

A lightweight Model Context Protocol (MCP) server for Answer AI chatflow and document store management

63 lines 1.58 kB
{ "name": "@answerai/answeragent-mcp", "version": "1.0.1", "description": "A lightweight Model Context Protocol (MCP) server for Answer AI chatflow and document store management", "type": "module", "main": "dist/index.js", "bin": { "answerai-mcp": "./dist/index.js" }, "files": [ "dist", "README.md" ], "keywords": [ "mcp", "model-context-protocol", "answer-ai", "chatflow", "document-store", "api", "ai-tools" ], "author": "Bradley Taylor", "license": "ISC", "homepage": "https://github.com/bradtaylor/answerai-mcp#readme", "repository": { "type": "git", "url": "git+https://github.com/bradtaylor/answerai-mcp.git" }, "bugs": { "url": "https://github.com/bradtaylor/answerai-mcp/issues" }, "publishConfig": { "access": "public" }, "engines": { "node": ">=18.0.0" }, "dependencies": { "@modelcontextprotocol/sdk": "0.6.0", "axios": "^1.8.4", "dotenv": "^16.4.7", "express": "^4.21.2", "zod": "^3.24.2" }, "devDependencies": { "@types/express": "^5.0.1", "@types/node": "^20.11.24", "nodemon": "^3.1.9", "ts-node": "^10.9.2", "tsx": "^4.19.3", "typescript": "^5.3.3", "vite": "^6.2.3" }, "scripts": { "build": "tsc && chmod +x dist/index.js", "start": "node dist/index.js", "dev": "nodemon --exec 'node --loader ts-node/esm src/index.ts'", "inspect": "node bin/run-inspector.js", "inspect-watch": "nodemon --exec 'node bin/run-inspector.js'", "test": "node --loader ts-node/esm --test" } }