-
I'm looking for a tutorial on how to connect Continue to figma's MCP, and I can't find exactly what to write in the config for this connection. I would appreciate your help. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hey @0Banana00! 👋 We have MCP cookbooks and documentation that can help you connect Good news: As of PR Option 1: JSON Configuration (New!)Create a JSON file in {
"url": "https://your-mcp-endpoint.com/sse",
"type": ["http", "sse"],
"headers": {
"Authorization": "${FIGMA_API_KEY}"
}
} Important: Store your API key securely! Use environment variables (as Option 2: Command Line
The JSON config approach is particularly nice because:
For Figma MCP specifically, you'd need:
The cookbook shows examples with PostHog and GitHub MCPs that follow the Hope this helps! Let me know if you need more specific guidance once you |
Beta Was this translation helpful? Give feedback.
-
Thanks for the detailed answer. |
Beta Was this translation helpful? Give feedback.
Hey @0Banana00! 👋
We have MCP cookbooks and documentation that can help you connect
Continue with MCPs! Check out our guide here:
https://docs.continue.dev/guides/posthog-github-continuous-ai
Good news: As of PR
#7956, Continue now
supports JSON configuration files for MCP servers! You can configure your
MCP connection in two ways:
Option 1: JSON Configuration (New!)
Create a JSON file in
.continue/mcpServers/
folder:Important: Store your API key securely! Use environment variables (as
shown above) or Continue Hub secrets - never hardcode keys directly in
…