Skip to content

Commit

Permalink
readme and package.json
Browse files Browse the repository at this point in the history
  • Loading branch information
keturiosakys committed Dec 11, 2024
1 parent 7f3d52b commit d7f748a
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
1 change: 1 addition & 0 deletions packages/mcp-server/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dist
15 changes: 14 additions & 1 deletion packages/mcp-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,23 @@ This is a proof of concept model context protocol server for querying Fiberplane

If you have Claude Desktop installed, update the configuration to use the local MCP server.

```json
{
"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](https://github.com/modelcontextprotocol/servers/issues/64)
>
> ```
> ```json
> {
> "mcpServers": {
> "fiberplane": {
Expand Down
4 changes: 2 additions & 2 deletions packages/mcp-server/package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "@fiberplane/mcp-server-fiberplane",
"type": "module",
"version": "0.0.1",
"version": "0.1.0",
"access": "public",
"description": "MCP server for Fiberplane Studio",
"main": "dist/index.js",
"bin": {
"mcp-server-fiberplane": "./dist/index.js"
"mcp-server-fiberplane": "./dist/src/index.js"
},
"scripts": {
"build": "tsc",
Expand Down

0 comments on commit d7f748a

Please sign in to comment.