@feedmob/github-issues 0.0.8 → 0.0.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/dist/common/version.js +1 -1
- package/package.json +4 -1
package/README.md
CHANGED
|
@@ -133,3 +133,15 @@ npx tsx index.ts
|
|
|
133
133
|
|
|
134
134
|
### `issues/search_schema`
|
|
135
135
|
- Provides the schema definition for `search_issues`.
|
|
136
|
+
|
|
137
|
+
## Troubleshooting
|
|
138
|
+
|
|
139
|
+
### `Server does not support completions (required for completion/complete)`
|
|
140
|
+
|
|
141
|
+
Cursor (and other MCP clients using protocol 2025-11-25) may request the `completion/complete` capability. FastMCP 2.1 uses `@modelcontextprotocol/sdk`; SDK **1.22.0+** requires the server to advertise the completions capability when registering a completion handler, but FastMCP does not set it, so the server crashes on start.
|
|
142
|
+
|
|
143
|
+
**Fix:** This package pins the SDK to **1.21.2** via `overrides` in `package.json`. After pulling, run `npm install` in `src/github-issues/` so the override is applied. If you use `npx -y @feedmob/github-issues`, reinstall or use the local build: `node /path/to/fm-mcp-servers/src/github-issues/dist/index.js`.
|
|
144
|
+
|
|
145
|
+
### `SyntaxError: Unexpected token ':'` with JSON on stdin
|
|
146
|
+
|
|
147
|
+
If you see Node parsing the MCP `initialize` JSON as JavaScript (e.g. `Expected ';', '}' or <eof>`), the process is likely being run with **stdin as script** (e.g. `node -`). The server must be started with **stdio** so that stdin is the MCP channel, not script input. In Cursor MCP config, use a plain command such as `node /absolute/path/to/dist/index.js` or `npx -y @feedmob/github-issues` with no `-` or stdin-eval.
|
package/dist/common/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@feedmob/github-issues",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "MCP server for using the GitHub API",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "FeedMob",
|
|
@@ -35,5 +35,8 @@
|
|
|
35
35
|
"repository": {
|
|
36
36
|
"type": "git",
|
|
37
37
|
"url": "https://github.com/feed-mob/fm-mcp-servers"
|
|
38
|
+
},
|
|
39
|
+
"overrides": {
|
|
40
|
+
"@modelcontextprotocol/sdk": "1.21.2"
|
|
38
41
|
}
|
|
39
42
|
}
|