fix: correct npm badge to point to @iqai/mcp-near-intent-swaps package#30
fix: correct npm badge to point to @iqai/mcp-near-intent-swaps package#30Royal-lobster merged 1 commit intomainfrom
Conversation
- Changed package name from @iqai/mcp-near-intents to @iqai/mcp-near-intent-swaps - Updated bin name to match package name - Fixed npm badge URL in README to point to correct package - Updated all npx commands, git clone URLs, and configuration examples Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Summary of ChangesHello @Royal-lobster, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request addresses a critical naming inconsistency by updating the package name for the NEAR Intent Swaps MCP Server. The changes ensure that all documentation, installation instructions, and internal configurations correctly reference the Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request aims to rename the package to @iqai/mcp-near-intent-swaps. The changes in package.json and README.md are correct and consistent with this goal. I've added one comment regarding the scope of the renaming, as some internal references to the old name seem to have been missed. Once that is addressed, this PR will be in great shape.
| "name": "@iqai/mcp-near-intent-swaps", | ||
| "version": "0.0.11", | ||
| "description": "An MCP server for NEAR intents swap using the Defuse Protocol one-click SDK.", | ||
| "description": "An MCP server for NEAR intent swaps using the Defuse Protocol one-click SDK.", | ||
| "main": "dist/index.js", | ||
| "type": "module", | ||
| "bin": { | ||
| "mcp-near-intents": "dist/index.js" | ||
| "mcp-near-intent-swaps": "dist/index.js" | ||
| }, |
There was a problem hiding this comment.
While the package name, description, and binary name are correctly updated here, the renaming seems incomplete across the project. There are still several references to the old name that should be updated for consistency.
For example:
src/index.tsstill contains multiple references to "NEAR Intents MCP Server" in log messages and in theFastMCPconstructor.- The tool description for
GET_NEAR_SWAP_TOKENSinsrc/tools/near-swap-tokens.tsstill refers to "NEAR Intents".
Please update all remaining occurrences of the old name to ensure the renaming is applied consistently throughout the codebase.
Summary
@iqai/mcp-near-intentsto@iqai/mcp-near-intent-swapsTest plan
🤖 Generated with Claude Code