1. Conduid
  2. Search
  3. mcp-server-deerflow-kinthai
MCP server · Search

mcp-server-deerflow-kinthai

MCP Server that exposes DeerFlow deep capabilities (research, analysis, visualization) via standard Model Context Protocol

Unclaimed search
37Low

Scored 4 months ago · breakdown

About mcp-server-deerflow-kinthai

mcp-server-deerflow-kinthai is an MCP server in the Search category: mCP Server that exposes DeerFlow deep capabilities (research, analysis, visualization) via standard Model Context Protocol. It has been installed 0 times through Conduid.

Install

uvx
uvx mcp-server-deerflow-kinthai
pip
pip install mcp-server-deerflow-kinthai

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about mcp-server-deerflow-kinthai

Powered by Claude · Grounded in docs

I know everything about mcp-server-deerflow-kinthai. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • ·Scoped permissionsNot checked yet.

README

mcp-server-deerflow-kinthai

MCP Server that exposes DeerFlow deep capabilities via standard Model Context Protocol.

Any MCP client (OpenClaw, Claude Desktop, Cursor, etc.) can discover and invoke DeerFlow skills through this server.

Architecture

MCP Client (OpenClaw / Claude Desktop / Cursor)
    |
    | MCP protocol (SSE on :8808)
    v
mcp-server-deerflow-kinthai
    |
    | LangGraph REST API (:2024)
    v
DeerFlow (bytedance/deer-flow)
    |
    +-- deep research (multi-source web search + cross-verification)
    +-- data analysis (DuckDB)
    +-- chart visualization (26+ chart types)
    +-- PPT generation
    +-- image generation
    +-- consulting analysis (SWOT, Porter's, etc.)

The server is a thin wrapper: it translates MCP tool calls into DeerFlow LangGraph runs, extracts the response text and artifacts, and returns them in MCP format. DeerFlow itself remains untouched upstream.

Tools

Tool Description
deep_research Multi-source web research with cross-verification
data_analysis Data analysis with DuckDB (CSV/Excel)
chart_visualization 26+ chart types (line, bar, pie, scatter, sankey, etc.)
ppt_generation PowerPoint presentation generation
image_generation AI image generation
consulting_analysis Business analysis (SWOT, Porter's Five Forces, etc.)

All tools accept a query string (required) and an optional agent_name for specialized DeerFlow agent personas.

Quick Start

# Install
pip install mcp-server-deerflow-kinthai

# Run (requires a running DeerFlow instance)
export DEERFLOW_LANGGRAPH_URL=http://localhost:2024
mcp-server-deerflow-kinthai

The server starts on port 8808 with SSE transport at /sse.

Requires Python >= 3.12.

Prerequisites

You need a running DeerFlow instance. Follow the DeerFlow README to set it up, then point this server at it:

# Default: DeerFlow LangGraph on localhost:2024
export DEERFLOW_LANGGRAPH_URL=http://localhost:2024

# Optional: DeerFlow Gateway for artifact downloads (charts, PPTs, images)
export DEERFLOW_GATEWAY_URL=http://localhost:8001

Configuration

Environment Variables

Variable Default Description
DEERFLOW_LANGGRAPH_URL http://localhost:2024 DeerFlow LangGraph server URL
DEERFLOW_GATEWAY_URL http://localhost:8001 DeerFlow Gateway API URL (for artifact downloads)

OpenClaw

Add to your openclaw.json:

{
  "mcp": {
    "servers": {
      "deerflow-kinthai": {
        "url": "http://localhost:8808/sse"
      }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config:

{
  "mcpServers": {
    "deerflow-kinthai": {
      "command": "mcp-server-deerflow-kinthai"
    }
  }
}

Claude Code

claude mcp add deerflow-kinthai http://localhost:8808/sse --transport sse

Mount in Existing App

The server can be embedded in an existing FastAPI/Starlette application:

from fastapi import FastAPI
from mcp_server_deerflow_kinthai.server import create_starlette_app

app = FastAPI()
app.mount("/mcp", create_starlette_app())

Development

git clone https://github.com/kinthaiofficial/mcp-server-deerflow-kinthai
cd mcp-server-deerflow-kinthai
pip install -e ".[dev]"
pytest

Related Projects

  • DeerFlow — The upstream multi-agent research framework by ByteDance
  • openclaw-kinthai — OpenClaw channel plugin for KinthAI
  • kinthai-agent-cli — Universal CLI bridge for connecting any agent to KinthAI

License

MIT — KinthAI

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About mcp-server-deerflow-kinthai

How do I install mcp-server-deerflow-kinthai?

Run uvx mcp-server-deerflow-kinthai, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is mcp-server-deerflow-kinthai safe to use with an AI agent?

Its trust score is 37 out of 100 (low). Conduid hasn't run static security checks on this repository yet, so review the source yourself before granting it credentials. It has no ConduID identity yet, so agent calls to it are not receipted.

Is mcp-server-deerflow-kinthai still maintained?

Conduid hasn't recorded a commit date for this repository yet. Check the repository directly for recent activity.