@dw8k/mcp-fallback-server
Version:
MCP fallback server that extracts keywords from prompts and triggers tool recommendations.
54 lines (53 loc) • 1.12 kB
JSON
{
"name": "@dw8k/mcp-fallback-server",
"version": "1.0.2",
"description": "MCP fallback server that extracts keywords from prompts and triggers tool recommendations.",
"main": "dist/main.js",
"bin": {
"mcp-fallback-server": "dist/main.js"
},
"files": [
"dist",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc",
"start": "node dist/main.js",
"dev": "tsx src/main.ts",
"lint": "eslint . --ext .ts",
"format": "prettier --write ."
},
"keywords": [
"mcp",
"model-context-protocol",
"fallback",
"aggregator",
"agent",
"llm",
"tool-recommendation"
],
"author": {
"name": "DW8K",
"url": "https://github.com/DW8K"
},
"license": "MIT",
"type": "module",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.9.0",
"dotenv": "^16.5.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/node": "^22.15.3",
"nodemon": "^3.0.2",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"publishConfig": {
"access": "public"
}
}