@fiberplane/mcp-server-fiberplane
v0.2.0
Published
MCP server for Fiberplane Studio
Downloads
280
Keywords
Readme
Fiberplane Model Context Protocol Server
This is a proof of concept model context protocol server for querying Fiberplane Studio local API using the Model Context Protocol.
Setting up using Claude Desktop
If you have Claude Desktop installed, update the configuration to use the local MCP server.
{
"mcpServers": {
"fiberplane": {
"command": "npx",
"args": [
"@fiberplane/mcp-server-fiberplane"
]
}
}
}
Note If you're using NVM or FNM or any other Node version manager, Claude Desktop will not be able to find the
node
command. Use the following snippet as reference. Issue tracked here{ "mcpServers": { "fiberplane": { "command": "<path_to_node>", "args": [ "<path_to_globally_installed_npm_packages_>/@fiberplane/mcp-server-fiberplane/dist/index.js" ] } } }