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

mcp-server-cloud-agent

v1.0.0

Published

MCP server for Cloud Agent — an AI software engineer that writes code, opens PRs, reviews code, generates tests, runs security scans, and answers codebase questions. Connect from any MCP client (Claude Code, Cursor, Windsurf) and delegate engineering task

Downloads

93

Readme

mcp-server-cloud-agent

MCP server for Cloud Agent — an AI software engineer that writes code, opens PRs, reviews code, generates tests, runs security scans, and answers codebase questions.

Connect from any MCP client (Claude Code, Cursor, Windsurf, or your own agents) and delegate engineering tasks.

Tools (9)

| Tool | Description | |------|-------------| | run_task | Write code, fix bugs, add features — returns result + PR URL | | review_pr | Review a GitHub PR with structured feedback, optionally post to GitHub | | ask_codebase | Ask questions about any GitHub repo (auto-indexes on first use) | | generate_tests | Generate tests for a file or feature, opens a PR | | security_scan | Security + dependency scan across one or more repos | | list_sessions | List recent sessions with status, cost, duration, PR URLs | | list_playbooks | List available workflow templates (bug-triage, test-coverage, etc.) | | run_playbook | Run a playbook against a repo | | get_usage | Usage stats — sessions, cost, time saved, breakdowns |

Setup

1. Get an API key

Sign in to your Cloud Agent web workspace and generate an API key at /auth/api-key.

2. Configure your MCP client

Claude Code (~/.claude.json):

{
  "mcpServers": {
    "cloud-agent": {
      "command": "npx",
      "args": ["-y", "mcp-server-cloud-agent"],
      "env": {
        "CLOUD_AGENT_API_KEY": "ca_your_key_here"
      }
    }
  }
}

Cursor / Windsurf (MCP settings):

{
  "mcpServers": {
    "cloud-agent": {
      "command": "npx",
      "args": ["-y", "mcp-server-cloud-agent"],
      "env": {
        "CLOUD_AGENT_API_KEY": "ca_your_key_here"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | CLOUD_AGENT_API_KEY | Yes | API key (ca_* prefix) from your Cloud Agent workspace | | CLOUD_AGENT_URL | No | Backend URL (defaults to https://cloudagent.metaltorque.dev) |

Usage Examples

Once configured, your MCP client can call these tools directly:

Fix a bug:

"Use cloud-agent to fix the broken login flow in myorg/myapp"

Review a PR:

"Use cloud-agent to review https://github.com/myorg/myapp/pull/42"

Ask about code:

"Use cloud-agent to explain how authentication works in myorg/myapp"

Generate tests:

"Use cloud-agent to generate tests for src/auth.ts in myorg/myapp"

Security scan:

"Use cloud-agent to scan myorg/myapp and myorg/api for vulnerabilities"

Run a playbook:

"Use cloud-agent to run the bug-triage playbook on myorg/myapp"

What is Cloud Agent?

Cloud Agent is a Devin-alternative that puts an AI software engineer where your team already works — Slack, Teams, Jira, Linear, and 12 more platforms. It writes code, opens PRs, reviews code, generates tests, runs security scans, and answers codebase questions.

This MCP server gives any MCP-compatible AI client the same capabilities.

License

MIT