Skip to main content

Overview

Wolfia provides an MCP (Model Context Protocol) server that lets you chat with Wolfia AI directly from your favorite AI-powered tools. Ask questions, get expert answers with citations, and access your conversation history—all without leaving your workflow.

Supported clients

ClientType
Claude CodeCLI / Terminal
CursorIDE
WindsurfIDE

Available tools

ToolDescription
send_messageSend a message to Wolfia AI and get expert answers with citations from your knowledge base
list_conversationsList your recent conversations with Wolfia
get_conversationRetrieve full conversation history to continue where you left off

Setup

Claude Code

Add Wolfia with a single command:
claude mcp add wolfia -- npx -y mcp-remote@latest https://api.wolfia.com/api/mcp/

Cursor / Windsurf

Add the following to your MCP configuration file:
ClientConfig file location
Cursor.cursor/mcp.json in your project or global settings
Windsurf.windsurf/mcp.json or IDE settings
{
  "mcpServers": {
    "wolfia": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://api.wolfia.com/api/mcp/"]
    }
  }
}
After editing the config file, restart your application for changes to take effect.

Authentication

The first time you use Wolfia, you’ll be prompted to authenticate:
  1. A browser window opens automatically
  2. Sign in with your existing Wolfia account (SSO or email)
  3. Authorize the application to access Wolfia
  4. Return to your app—you’re now connected!
You must have an existing Wolfia account to use the MCP server. If you don’t have one, sign up at wolfia.com first.

Troubleshooting

Authentication errors

If authentication fails:
  • Clear your browser cookies for wolfia.com and try again
  • Ensure you’re using the same account that has access to your Wolfia organization

Requirements

  • An MCP-compatible client (Claude Code, Cursor, or Windsurf)
  • A Wolfia account with access to your organization
  • Node.js 18+ (for npx)