IDE Integration Guide¶
Configure various IDEs and AI tools to use the Fluvie MCP server.
Claude Desktop¶
Configuration¶
- Open Claude Desktop
- Go to Settings → Developer → MCP Servers
- Click Add Server
- Enter configuration:
On macOS, the config file is at:
~/Library/Application Support/Claude/claude_desktop_config.json
On Windows:
%APPDATA%\Claude\claude_desktop_config.json
Usage¶
After configuration, Claude can:
- Generate Fluvie code from descriptions
- Search documentation
- Suggest templates
- Explain widget usage
Example prompts:
"Create a Fluvie scene with an animated title and sparkle effects"
"What's the best template for showing a top 10 ranking?"
"How do I use AnimatedProp to fade in text over 2 seconds?"
VS Code with Continue¶
Installation¶
- Install Continue extension
- Open command palette:
Cmd/Ctrl + Shift + P - Run:
Continue: Open Config File
Configuration¶
Add to ~/.continue/config.json:
Usage¶
- Open Continue sidebar (
Cmd/Ctrl + L) - Ask questions about Fluvie
- Generate code directly in your project
Cursor IDE¶
Configuration¶
- Open Settings (
Cmd/Ctrl + ,) - Search for "MCP" or "Model Context Protocol"
- Add server configuration:
Using with Cursor¶
In Cursor's AI chat or Composer:
"@fluvie generate a scene with animated stats"
Zed Editor¶
Configuration¶
Add to your Zed settings (~/.config/zed/settings.json):
Generic MCP Client¶
For any MCP-compatible client, use these settings:
| Setting | Value |
|---|---|
| Server URL | https://mcp.fluvie.dev/mcp |
| Transport | HTTP |
| SSE Endpoint | https://mcp.fluvie.dev/mcp/sse |
JSON-RPC Example¶
curl -X POST https://mcp.fluvie.dev/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'
Response:
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"tools": [
{
"name": "searchDocs",
"description": "Search Fluvie documentation",
"inputSchema": {...}
},
...
]
}
}
Local Development Setup¶
For developing Fluvie projects with a local MCP server:
1. Start Local Server¶
2. Configure IDE¶
Replace the URL with your local server:
3. Advantages¶
- Faster responses (no network latency)
- Works offline
- Can customize documentation
- Test documentation changes before publishing
Combining with IDE Helpers¶
For the best experience, combine MCP with the AI reference file:
- Configure MCP server (for interactive queries)
- Add
FLUVIE_AI_REFERENCE.mdto project context (for code generation)
See IDE Helpers for using the reference file.
Troubleshooting¶
"Server not found" error¶
- Check server is running:
curl https://mcp.fluvie.dev/health - Verify URL in configuration
- Restart IDE after changing config
Tools not appearing¶
- Ensure MCP server is enabled in IDE settings
- Check for errors in IDE console/logs
- Try reconnecting: disable and re-enable server
Slow responses¶
- Check internet connection
- Consider self-hosting for lower latency
- Use local server for development
"Invalid response" errors¶
- Check MCP server logs
- Verify you're using the correct endpoint (
/mcp) - Update IDE/extension to latest version
Next Steps¶
- MCP Agent Overview - Learn about available tools
- Setup Guide - Self-host the server
- IDE Helpers - Use AI reference file