@daffodiltech/mcp-docs
Version:
MCP server exposing Daffodil's knowledge base tools (read_advisor_faqs, read_nonprofit_faqs, etc.)
68 lines (49 loc) • 1.87 kB
Markdown
# @daffodiltech/mcp-docs
An MCP (Model Context Protocol) server that exposes Daffodil's knowledge base as individual tools for AI assistants like Claude.
## What it provides
This MCP server exposes the following pre-configured Daffodil knowledge base tools:
- `read_daffodil_terms` - Read Daffodil terms and conditions
- `read_daffodil_privacy` - Read Daffodil privacy policy
- `read_member_agreement` - Read Daffodil member agreement and DAF policies
- `read_granting_fees` - Read information about Daffodil granting policies and fee structure
- `read_advisor_faqs` - Read frequently asked questions for financial advisors
- `read_nonprofit_faqs` - Read frequently asked questions for nonprofit organizations
- `read_giving_faqs` - Read frequently asked questions about charitable giving and donor-advised funds
- `read_impact_model` - Read about Daffodil impact enablement model and methodology
## Installation
```bash
npm install -g @daffodiltech/mcp-docs
```
## Usage
### As an MCP Server
Configure your MCP client (like Claude Desktop) to use this server:
```json
{
"mcpServers": {
"daffodil": {
"command": "npx",
"args": [
"@daffodiltech/mcp-docs@latest"
]
}
}
}
```
### Local Development
```bash
# Clone and build
git clone https://github.com/daffodil-tech/daffodil.git
cd daffodil/apps/mcp-docs
pnpm install
pnpm build
# Run the server
node dist/index.js
```
## How it works
The server creates MCP tools from Daffodil's pre-configured knowledge base URLs. Each tool:
1. Fetches content from the specific Daffodil documentation page
2. Extracts and formats the content for AI consumption
3. Returns the formatted content to the AI assistant
The AI can then use these tools to answer questions about Daffodil's services, policies, and procedures based on the most up-to-date documentation.
## License
MIT