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
| Client | Type |
|---|
| Claude Code | CLI / Terminal |
| Cursor | IDE |
| Windsurf | IDE |
| Tool | Description |
|---|
send_message | Send a message to Wolfia AI and get expert answers with citations from your knowledge base |
list_conversations | List your recent conversations with Wolfia |
get_conversation | Retrieve 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:
| Client | Config 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:
- A browser window opens automatically
- Sign in with your existing Wolfia account (SSO or email)
- Authorize the application to access Wolfia
- 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)