diff --git a/README.md b/README.md index 30ee291..f113036 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# @a2a/mcp +# @a2amcp/mcp MCP gateway for a2acloud agents. It runs locally as a stdio MCP server and exposes deployed A2A agents as tools to Claude Code, Cursor, and other MCP @@ -7,9 +7,9 @@ clients. ## Quickstart ```bash -npx -y @a2a/mcp login -npx -y @a2a/mcp add -npx -y @a2a/mcp doctor +npx -y @a2amcp/mcp login +npx -y @a2amcp/mcp add +npx -y @a2amcp/mcp doctor ``` Add it to your MCP client config: @@ -19,7 +19,7 @@ Add it to your MCP client config: "mcpServers": { "a2a": { "command": "npx", - "args": ["-y", "@a2a/mcp"] + "args": ["-y", "@a2amcp/mcp"] } } } diff --git a/package-lock.json b/package-lock.json index c0f00ca..0a43985 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { - "name": "@a2a/mcp", - "version": "0.1.0", + "name": "@a2amcp/mcp", + "version": "0.1.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@a2a/mcp", - "version": "0.1.0", + "name": "@a2amcp/mcp", + "version": "0.1.1", "license": "Apache-2.0", "dependencies": { "@modelcontextprotocol/sdk": "^1.0.4", diff --git a/package.json b/package.json index 33350f9..389514f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "@a2a/mcp", - "version": "0.1.0", + "name": "@a2amcp/mcp", + "version": "0.1.1", "description": "MCP gateway for a2acloud agents. Run as a local MCP server; expose any number of deployed A2A agents to Claude Code, Cursor, and other MCP clients.", "type": "module", "bin": { diff --git a/src/cli.ts b/src/cli.ts index 64ef196..6f73970 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -229,7 +229,7 @@ program mcpServers: { a2a: { command: "npx", - args: ["-y", "@a2a/mcp"], + args: ["-y", "@a2amcp/mcp"], }, }, };