Connect world-class nano-modular tools to your favorite AI IDEs and clients in under 60 seconds.
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"
]
}
}
}
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!
Open Settings → MCP Servers → Add New MCP Server:
flowork_public_mcpSSEhttps://mcp.floworkos.com/sseOnce added, Cursor can autonomously run live web searches and HTTP operations directly inside your chat & composer.
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"
}
}'
| 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 |