Skip to content

Commit 0d3b3eb

Browse files
committed
docs: add troubleshooting section
1 parent ee4f06f commit 0d3b3eb

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,30 @@ To use this server with Claude Desktop, add the following configuration to your
102102
}
103103
```
104104

105+
#### Troubleshooting
106+
107+
##### MCP protocols-io: spawn protocols-io-mcp ENOENT
108+
109+
This error indicates that Claude Desktop cannot find the `protocols-io-mcp` command. To resolve this:
110+
1. Make sure you have installed the `protocols-io-mcp` package globally using pip.
111+
2. Change the `command` field in your `claude_desktop_config.json` to the full path of the `protocols-io-mcp` executable. You can find the path by running:
112+
```bash
113+
which protocols-io-mcp
114+
```
115+
3. Your final configuration should look like:
116+
```json
117+
{
118+
"mcpServers": {
119+
"protocols-io": {
120+
"command": "/full/path/to/protocols-io-mcp",
121+
"env": {
122+
"PROTOCOLS_IO_CLIENT_ACCESS_TOKEN": "your_client_access_token"
123+
}
124+
}
125+
}
126+
}
127+
```
128+
105129
## Development
106130

107131
### Running Tests

0 commit comments

Comments
 (0)