F
Framer
Read and edit Framer projects.
·No reviews yet
Share:
About
Auto-generated
Framer is a Model Context Protocol server in the Design category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Framer.
- What is the Framer Model Context Protocol (MCP) server used for?
- The Framer MCP server allows clients to read and edit Framer projects. It integrates design and prototyping workflows with external tools and services.
- How do I install the Framer MCP in a client like Cursor?
- Installation in a client like Cursor typically involves configuring the server's transport. For Framer, the transport is stdio, meaning it communicates via standard input/output streams.
- Does the Framer MCP server require an API key for authentication?
- Yes, the Framer MCP server uses API key authentication. You will need to provide a valid API key to access its functionalities.
- What are the key capabilities offered by the Framer MCP?
- The Framer MCP primarily enables interaction with Framer projects. This generally includes functionalities for programmatically accessing and modifying design and prototyping assets.
- Is there a cost associated with using the Framer MCP server?
- The Framer MCP server is provided by the community and its repository is open source. Any associated costs would depend on the specific deployment context and how it's hosted.
- What is a potential limitation when using the Framer MCP server?
- A potential limitation is that specific functionalities are dependent on the Framer application's architecture and capabilities. It operates via stdio so integrating it with network-based services might require additional layers.
Install Framer
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"framer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-framer"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"framer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-framer"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"framer": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-framer"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.