@daffodiltech/mcp-docs
Version:
MCP server exposing Daffodil's knowledge base tools (read_advisor_faqs, read_nonprofit_faqs, etc.)
54 lines (53 loc) • 1.16 kB
JSON
{
"name": "@daffodiltech/mcp-docs",
"version": "1.0.3",
"description": "MCP server exposing Daffodil's knowledge base tools (read_advisor_faqs, read_nonprofit_faqs, etc.)",
"main": "dist/index.js",
"bin": {
"daffodil-mcp": "dist/index.js"
},
"type": "module",
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist"
},
"files": [
"dist/**/*",
"README.md"
],
"keywords": [
"mcp",
"model-context-protocol",
"daffodil",
"knowledge-base",
"web-reader",
"claude",
"ai-tools"
],
"author": "Daffodil Tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/daffodil-tech/daffodil.git",
"directory": "apps/mcp-docs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"tsup": "^8.0.0",
"@repo/common": "workspace:*"
},
"engines": {
"node": ">=18.0.0"
},
"publishConfig": {
"access": "public"
}
}