release: 0.1.3 — add a2amcp bin, sync server/cli version from package.json
All checks were successful
build / test (push) Successful in 29s
publish / npm (push) Successful in 31s

Adds an "a2amcp" bin (alongside the existing "a2a-mcp" for back-compat)
so that npx -y a2amcp resolves the binary by package name. Without it
npx fell back unreliably when no bin matched.

Also rips the hardcoded "0.1.0" out of cli.ts and gateway.ts and reads
the version from package.json — that was why serverInfo lagged behind
the published tag. Renames the user-facing command in help / error
strings / README from a2a-mcp to a2amcp; the legacy bin stays for
existing scripts.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-15 20:39:23 -03:00
parent fd71a528e9
commit 633ca5dad6
6 changed files with 34 additions and 24 deletions

View File

@@ -30,14 +30,14 @@ Restart the client after adding or removing agents.
## Commands ## Commands
```bash ```bash
a2a-mcp login # save control-plane credentials a2amcp login # save control-plane credentials
a2a-mcp whoami # show current account a2amcp whoami # show current account
a2a-mcp agents # list agents visible to your account a2amcp agents # list agents visible to your account
a2a-mcp add <name> # expose one agent through this gateway a2amcp add <name> # expose one agent through this gateway
a2a-mcp list # list locally enabled agents a2amcp list # list locally enabled agents
a2a-mcp remove <name> # stop exposing an agent a2amcp remove <name> # stop exposing an agent
a2a-mcp doctor # probe enabled agents and count tools a2amcp doctor # probe enabled agents and count tools
a2a-mcp logout # clear local credentials a2amcp logout # clear local credentials
``` ```
Running `a2a-mcp` with no command starts the MCP gateway over stdio. Running `a2amcp` with no command starts the MCP gateway over stdio.

7
package-lock.json generated
View File

@@ -1,19 +1,20 @@
{ {
"name": "a2amcp", "name": "a2amcp",
"version": "0.1.2", "version": "0.1.3",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "a2amcp", "name": "a2amcp",
"version": "0.1.2", "version": "0.1.3",
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4", "@modelcontextprotocol/sdk": "^1.0.4",
"commander": "^12.1.0" "commander": "^12.1.0"
}, },
"bin": { "bin": {
"a2a-mcp": "dist/cli.js" "a2a-mcp": "dist/cli.js",
"a2amcp": "dist/cli.js"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^20.12.0", "@types/node": "^20.12.0",

View File

@@ -1,9 +1,10 @@
{ {
"name": "a2amcp", "name": "a2amcp",
"version": "0.1.2", "version": "0.1.3",
"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.", "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", "type": "module",
"bin": { "bin": {
"a2amcp": "dist/cli.js",
"a2a-mcp": "dist/cli.js" "a2a-mcp": "dist/cli.js"
}, },
"main": "dist/index.js", "main": "dist/index.js",

View File

@@ -1,15 +1,19 @@
#!/usr/bin/env node #!/usr/bin/env node
/** /**
* `a2a-mcp` — install once, expose any number of a2acloud agents to your MCP * `a2amcp` — install once, expose any number of a2acloud agents to your MCP
* client (Claude Code, Cursor, etc.). * client (Claude Code, Cursor, etc.).
* *
* No-argument invocation runs the gateway over stdio. That's the form an MCP * No-argument invocation runs the gateway over stdio. That's the form an MCP
* client launches. Subcommands manage the local agent list, auth, etc. * client launches. Subcommands manage the local agent list, auth, etc.
*/ */
import { createRequire } from "node:module";
import { Command } from "commander"; import { Command } from "commander";
import readline from "node:readline/promises"; import readline from "node:readline/promises";
import { stdin as input, stdout as output, stderr } from "node:process"; import { stdin as input, stdout as output, stderr } from "node:process";
const require = createRequire(import.meta.url);
const pkg = require("../package.json") as { version: string };
import { ApiError, ControlPlaneClient } from "./api.js"; import { ApiError, ControlPlaneClient } from "./api.js";
import { addAgent, loadConfig, removeAgent } from "./config.js"; import { addAgent, loadConfig, removeAgent } from "./config.js";
import { import {
@@ -24,9 +28,9 @@ import { runStdio } from "./gateway.js";
const program = new Command(); const program = new Command();
program program
.name("a2a-mcp") .name("a2amcp")
.description("MCP gateway for a2acloud agents.") .description("MCP gateway for a2acloud agents.")
.version("0.1.0"); .version(pkg.version);
async function client(apiOverride?: string): Promise<ControlPlaneClient> { async function client(apiOverride?: string): Promise<ControlPlaneClient> {
const creds = await loadCredentials(); const creds = await loadCredentials();
@@ -69,7 +73,7 @@ program
try { try {
await runStdio(); await runStdio();
} catch (err) { } catch (err) {
stderr.write(`a2a-mcp: ${(err as Error).message}\n`); stderr.write(`a2amcp: ${(err as Error).message}\n`);
process.exit(1); process.exit(1);
} }
}); });
@@ -108,7 +112,7 @@ program
.description("Show the currently logged-in user.") .description("Show the currently logged-in user.")
.action(async () => { .action(async () => {
const creds = await loadCredentials(); const creds = await loadCredentials();
if (!creds) fail("not logged in (run `a2a-mcp login`)"); if (!creds) fail("not logged in (run `a2amcp login`)");
try { try {
const me = await (await client()).me(); const me = await (await client()).me();
output.write(`${me.email} (${creds.apiUrl})\n`); output.write(`${me.email} (${creds.apiUrl})\n`);
@@ -146,7 +150,7 @@ program
.action(async () => { .action(async () => {
const cfg = await loadConfig(); const cfg = await loadConfig();
if (cfg.agents.length === 0) { if (cfg.agents.length === 0) {
output.write("(no agents added; try `a2a-mcp add <name>`)\n"); output.write("(no agents added; try `a2amcp add <name>`)\n");
return; return;
} }
for (const a of cfg.agents) output.write(` ${a.name} ${a.url}\n`); for (const a of cfg.agents) output.write(` ${a.name} ${a.url}\n`);
@@ -237,6 +241,6 @@ program
}); });
program.parseAsync(process.argv).catch((err) => { program.parseAsync(process.argv).catch((err) => {
stderr.write(`a2a-mcp: ${(err as Error).message}\n`); stderr.write(`a2amcp: ${(err as Error).message}\n`);
process.exit(1); process.exit(1);
}); });

View File

@@ -1,7 +1,7 @@
/** /**
* Reader for ~/.a2a/credentials.json — same file the Python `a2a` CLI writes. * Reader for ~/.a2a/credentials.json — same file the Python `a2a` CLI writes.
* *
* We deliberately *only read* this file (and overwrite it on `a2a-mcp login`) * We deliberately *only read* this file (and overwrite it on `a2amcp login`)
* so a single login flow is shared between the Python and Node tooling. * so a single login flow is shared between the Python and Node tooling.
*/ */
import { promises as fs } from "node:fs"; import { promises as fs } from "node:fs";

View File

@@ -6,6 +6,7 @@
* Naming: ``{agent}__{skill}``. Double underscore separator. Skill names * Naming: ``{agent}__{skill}``. Double underscore separator. Skill names
* containing ``__`` are not supported. * containing ``__`` are not supported.
*/ */
import { createRequire } from "node:module";
import { Server } from "@modelcontextprotocol/sdk/server/index.js"; import { Server } from "@modelcontextprotocol/sdk/server/index.js";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js"; import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
import { import {
@@ -17,6 +18,9 @@ import { loadConfig, type EnabledAgent } from "./config.js";
import { loadCredentials } from "./credentials.js"; import { loadCredentials } from "./credentials.js";
import { UpstreamAgent, UpstreamError, type UpstreamTool } from "./upstream.js"; import { UpstreamAgent, UpstreamError, type UpstreamTool } from "./upstream.js";
const require = createRequire(import.meta.url);
const pkg = require("../package.json") as { version: string };
export const SEP = "__"; export const SEP = "__";
export interface GatewayOptions { export interface GatewayOptions {
@@ -48,7 +52,7 @@ export async function buildGateway(opts: GatewayOptions = {}): Promise<GatewayHa
const server = const server =
opts.server ?? opts.server ??
new Server( new Server(
{ name: "a2a-mcp", version: "0.1.0" }, { name: "a2amcp", version: pkg.version },
{ capabilities: { tools: { listChanged: false } } }, { capabilities: { tools: { listChanged: false } } },
); );
@@ -70,9 +74,9 @@ export async function buildGateway(opts: GatewayOptions = {}): Promise<GatewayHa
} catch (err) { } catch (err) {
// Silently skip an upstream that's down — surfacing an error here // Silently skip an upstream that's down — surfacing an error here
// would break the client's whole tool list. The user can debug via // would break the client's whole tool list. The user can debug via
// `a2a-mcp doctor`. // `a2amcp doctor`.
process.stderr.write( process.stderr.write(
`a2a-mcp: skipping ${u.name}: ${(err as Error).message}\n`, `a2amcp: skipping ${u.name}: ${(err as Error).message}\n`,
); );
} }
}), }),