Skip to content

Latest commit

 

History

History
61 lines (42 loc) · 993 Bytes

File metadata and controls

61 lines (42 loc) · 993 Bytes

duh mcp

Start the MCP server for AI agent integration.

Synopsis

duh mcp

Description

Starts a Model Context Protocol server on stdio. This allows AI agents (Claude Desktop, Claude Code, and other MCP-compatible clients) to use duh's consensus engine as a tool.

The server exposes three tools: duh_ask, duh_recall, and duh_threads.

See MCP Server for full configuration and usage details.

Examples

Run directly:

duh mcp

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS):

{
  "mcpServers": {
    "duh": {
      "command": "duh",
      "args": ["mcp"]
    }
  }
}

Claude Code

Add to .mcp.json in your project:

{
  "mcpServers": {
    "duh": {
      "command": "duh",
      "args": ["mcp"]
    }
  }
}

Related

  • MCP Server -- Full MCP server guide with tool details