Overview
The Model Context Protocol (MCP) server brings Wolfia AI into the tools your team already works in, so they can chat, search, and pull answers without leaving their editor or terminal. Authentication is handled via OAuth, so you sign in once with your existing Wolfia account and the client stays connected. The server is hosted athttps://api.wolfia.com/mcp/ and uses mcp-remote as a thin stdio shim that most clients already know how to spawn.
Connecting directly without the shim, putting Wolfia behind a gateway (Runlayer, Cloudflare AI Gateway, etc.), or hitting an
Invalid redirect URI error? See MCP OAuth, direct connections & gateways for the full OAuth contract, redirect URI rules, and why Wolfia needs no manual allowlist.Supported clients
Available tools
Once connected, your client can chat with Wolfia AI, search your knowledge base and Slack history, read documents, submit questionnaires, and manage knowledge and settings, all scoped to your Wolfia permissions.Browse every MCP tool
See the full tool reference, grouped by category (chat, knowledge search, documents, Slack, questionnaires, knowledge management, AI customization, and trust center), with what each tool does and which role it needs.
Setup
Claude Code
Add Wolfia with a single command:Cursor / Windsurf
Add the following to your MCP configuration file:Claude Desktop
Editclaude_desktop_config.json (Settings, then Developer, then Edit Config):
OpenClaw
OpenClaw can spawn standard stdio MCP servers. Add Wolfia to your OpenClaw MCP config (typically~/.openclaw/mcp.json or the equivalent in your OpenClaw settings):
Other MCP clients (custom agents, desktop apps)
Any client that can spawn a stdio MCP server works. Point it atmcp-remote with the Wolfia endpoint:
https://api.wolfia.com/mcp/ and let the client handle the OAuth dance.
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
mcp-remote (typically under ~/.mcp-auth/), so you only sign in once per client.
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
- Clear the local
mcp-remotetoken cache (rm -rf ~/.mcp-auth) and reconnect - Ensure you’re using the same account that has access to your Wolfia organization
Invalid redirect URI
The client (or your gateway) sent a redirect URI that Wolfia rejects. There is no Wolfia-side allowlist to change, the fix lives in your client or gateway config. See MCP OAuth: redirect URI rules and troubleshooting for the exact rules and how to fix it.
Tools don’t appear
- Restart the client after editing the config file
- Check that
npxis on your PATH (npx --version) - Check your client’s MCP logs. Claude Code:
claude mcp list. Cursor/Windsurf: MCP panel in settings
Requirements
- An MCP-compatible client
- A Wolfia account with access to your organization
- Node.js 18+ (for
npx)

