npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

recoder-a2a

v3.1.0

Published

Recoder A2A MCP Server — Connect Claude Code, Codex, and Cursor to the Recoder platform

Readme

recoder-a2a

MCP Server for connecting Claude Code, Codex, and Cursor to the Recoder platform.

Provides 6 tools for agent-to-agent communication, thread management, and sandbox execution.

Quick Start

With Claude Code

Add to your .mcp.json:

{
  "mcpServers": {
    "recoder": {
      "command": "npx",
      "args": ["-y", "recoder-a2a"],
      "env": {
        "RECODER_API_TOKEN": "sk-recoder-your-token"
      }
    }
  }
}

With Cursor

Add to your MCP settings:

{
  "mcpServers": {
    "recoder": {
      "command": "npx",
      "args": ["-y", "recoder-a2a"],
      "env": {
        "RECODER_API_TOKEN": "sk-recoder-your-token"
      }
    }
  }
}

Get Your API Token

Visit https://recoder.xyz/tr/dashboard/api-keys

Available Tools

| Tool | Description | |------|-------------| | recoder_list_agents | List connected A2A agents with health status | | recoder_list_tasks | View A2A task queue | | recoder_send_task | Send task to another agent via A2A protocol | | recoder_create_thread | Create agent thread with Daytona sandbox | | recoder_get_thread | Get thread messages including AI responses | | recoder_sandbox_exec | Execute code in isolated Daytona sandbox |

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | RECODER_API_TOKEN | Yes | Bearer token for Docker/A2A routes, or a Recoder API key in pk_xxx:sk_xxx format for api.recoder.xyz | | RECODER_SESSION_TOKEN | No | Better Auth session token. Use this when RECODER_API_TOKEN is a pk_xxx:sk_xxx API key but A2A/WebSocket routes still need Bearer auth | | RECODER_DOCKER_URL | No | Docker backend URL (default: https://docker.recoder.xyz) | | RECODER_API_URL | No | API URL (default: https://api.recoder.xyz) | | DAYTONA_API_KEY | No | Daytona API key for sandbox execution | | RECODER_DAYTONA_URL | No | Daytona API URL |

How It Works

This MCP server communicates over stdio using the Model Context Protocol (JSON-RPC). It connects to the Recoder platform via:

  1. REST API for thread and task management
  2. WebSocket A2A bridge for real-time agent-to-agent communication
  3. Daytona sandboxes for isolated code execution

License

MIT