-
Notifications
You must be signed in to change notification settings - Fork 2
fix: MCP repository field + idempotent publish #5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -3,6 +3,13 @@ | |
| "version": "0.4.0", | ||
| "description": "MCP server exposing an Omnigraph database to LLM clients (Tools + Resources, stdio transport).", | ||
| "license": "MIT", | ||
| "repository": { | ||
| "type": "git", | ||
| "url": "git+https://github.com/ModernRelay/omnigraph-ts.git", | ||
| "directory": "packages/mcp" | ||
| }, | ||
| "homepage": "https://github.com/ModernRelay/omnigraph-ts", | ||
| "bugs": "https://github.com/ModernRelay/omnigraph/issues", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bugs URL points to wrong repository nameLow Severity The Reviewed by Cursor Bugbot for commit 5b44e1f. Configure here. |
||
| "type": "module", | ||
| "main": "./dist/index.js", | ||
| "module": "./dist/index.js", | ||
|
|
||


There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🟡 Bugs URL points to wrong repository (
omnigraphinstead ofomnigraph-ts)The newly added
bugsfield atpackages/mcp/package.json:12points tohttps://github.com/ModernRelay/omnigraph/issues, but therepositoryURL (line 8) andhomepage(line 11) both correctly referenceomnigraph-ts. This will direct users reporting issues to the wrong GitHub repository (or a 404). The same typo exists pre-existing inpackages/sdk/package.json:12, and it was copy-pasted into this PR.Was this helpful? React with 👍 or 👎 to provide feedback.