📖 Integration Handbook

How to Use FLOWORK MCP

Connect world-class nano-modular tools to your favorite AI IDEs and clients in under 60 seconds.

CLIENT 01 🤖 Connect to Claude Desktop

To give Claude Desktop full access to web scraping, HTTP calls, crypto operations, and JSON formatting, add this MCP server definition to your configuration file:

Config Path: ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "flowork": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.floworkos.com/sse?key=YOUR_SECRET_KEY"
      ]
    }
  }
}
💡 Dynamic Real-Time Sync: Replace YOUR_SECRET_KEY with your personal key obtained from the homepage dashboard. Whenever you check/uncheck tools in the web UI, Claude updates instantly without needing to change this configuration file!

CLIENT 02 💻 Connect to Cursor / Windsurf IDE

Open Settings → MCP Servers → Add New MCP Server:

Once added, Cursor can autonomously run live web searches and HTTP operations directly inside your chat & composer.

CLIENT 03 ⚡ Direct HTTP / REST Execution

External applications can invoke tools directly with standard JSON payloads without any WebSocket/SSE overhead:

curl -X POST https://mcp.floworkos.com/tools/call \
  -H "Content-Type: application/json" \
  -d '{
    "name": "search_web",
    "arguments": {
      "query": "Claude 3.7 Sonnet benchmarks"
    }
  }'

API REFERENCE 🌐 Edge Endpoints Overview

Endpoint Method Description
/sse GET Server-Sent Events connection endpoint
/messages POST JSON-RPC 2.0 protocol endpoint
/tools/list GET Catalog of available nano-tools
/tools/call POST Direct REST tool execution