Toffu MCP Integration

Access Toffu's marketing tools directly in Claude Desktop, Cursor, and other MCP-compatible AI clients.

What is MCP?

MCP (Model Context Protocol) lets AI assistants connect to external tools and data sources. With Toffu's MCP server, you can use Toffu's capabilities from any MCP client.

Available Tools

fetch_memory - Search your company's memory database for insights, strategies, and historical data.

send_message - Execute full Toffu workflows and access all integrations, just like in the Toffu chat.

Setup

1. Generate API Key

Go to IntegrationsMCP in Toffu dashboard → Generate API Key

2. Configure Your Client

Claude Desktop Setup

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "Toffu": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://mcp.toffu.ai/mcp",
        "--header", "Authorization: Bearer your-api-key-here",
        "--header", "Origin: claude-desktop"
      ]
    }
  }
}
Cursor Setup

Add to your ~/.cursor/mcp.json:

{
  "mcpServers": {
    "Toffu": {
      "type": "streamable-http",
      "url": "https://mcp.toffu.ai/mcp",
      "headers": {
        "Authorization": "Bearer your-api-key-here"
      }
    }
  }
}

Replace your-api-key-here with your actual API key.

3. Usage

Claude Desktop: Use @toffu fetch_memory "query" or @toffu send_message "request"

Cursor: Access Toffu tools through the MCP integration panel

Examples

Research: @toffu fetch_memory "competitor analysis" → Use insights for strategy

Content: @toffu send_message "Create LinkedIn post about our new feature"

Analysis: @toffu send_message "Analyze Google Ads performance this month"

External MCP Servers

Connect Toffu to external MCP servers (GitHub, databases, custom tools) through IntegrationsMCP Servers to expand capabilities beyond native integrations.

Troubleshooting

Authentication errors: Verify API key is correct and hasn't expired

Connection issues: Check network connectivity to mcp.toffu.ai

Tool errors: Ensure required integrations are enabled in your Toffu account

Need Help?