New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@daffodiltech/mcp-docs

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@daffodiltech/mcp-docs

MCP server exposing Daffodil's knowledge base tools (read_advisor_faqs, read_nonprofit_faqs, etc.)

latest
Source
npmnpm
Version
1.0.3
Version published
Weekly downloads
1
Maintainers
1
Weekly downloads
 
Created
Source

@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

npm install -g @daffodiltech/mcp-docs

Usage

As an MCP Server

Configure your MCP client (like Claude Desktop) to use this server:

{
  "mcpServers": {
    "daffodil": {
      "command": "npx",
      "args": [
        "@daffodiltech/mcp-docs@latest"
      ]
    }
  }
}

Local Development

# 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:

  • Fetches content from the specific Daffodil documentation page
  • Extracts and formats the content for AI consumption
  • 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

Keywords

mcp

FAQs

Package last updated on 02 Jul 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts