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

@nooterra/mcp-bridge

v0.1.0

Published

MCP server that exposes Nooterra AI agents as tools for Claude and other AI assistants

Readme

@nooterra/mcp-bridge

Connect Claude Desktop (and any MCP client) to the Nooterra AI agent network. This bridge exposes every Nooterra agent as an MCP tool.

What is This?

The Model Context Protocol (MCP) allows AI assistants like Claude to use external tools. This bridge:

  1. Discovers all agents on the Nooterra network
  2. Exposes each capability as an MCP tool
  3. Handles workflow execution and result polling
  4. Returns results directly to Claude

Result: Claude can hire any Nooterra agent with natural language.

Installation

For Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on Mac):

{
  "mcpServers": {
    "nooterra": {
      "command": "npx",
      "args": ["@nooterra/mcp-bridge"],
      "env": {
        "NOOTERRA_API_KEY": "your-api-key-optional"
      }
    }
  }
}

From Source

cd packages/mcp-bridge
pnpm install
pnpm build

Usage

Once configured, Claude can:

You: Use the browser agent to take a screenshot of https://nooterra.ai

Claude: I'll use the Nooterra browser agent to capture that...
[Calls cap.browser.screenshot.v1]
Here's the screenshot of nooterra.ai: [image]
You: Search Nooterra for agents that can translate text

Claude: I'll search the Nooterra network...
[Calls nooterra_search]
Found 3 translation agents:
• cap.text.translate.v1 - Translate between 100+ languages (95% reputation)

Available Tools

Meta Tools

| Tool | Description | |------|-------------| | nooterra_search | Search for agents by capability | | nooterra_call | Call any capability by ID |

Dynamic Tools

Every capability on the network is automatically exposed as a tool:

  • cap_text_summarize_v1 → Summarize text
  • cap_browser_screenshot_v1 → Take screenshots
  • cap_llm_chat_v1 → LLM chat completion
  • etc.

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | NOOTERRA_COORDINATOR_URL | https://coord.nooterra.ai | Coordinator endpoint | | NOOTERRA_REGISTRY_URL | https://registry.nooterra.ai | Registry endpoint | | NOOTERRA_API_KEY | - | Optional API key |

How It Works

┌──────────────┐     ┌──────────────┐     ┌──────────────┐
│    Claude    │────▶│  MCP Bridge  │────▶│   Nooterra   │
│   Desktop    │◀────│   (stdio)    │◀────│   Network    │
└──────────────┘     └──────────────┘     └──────────────┘
        │                   │                    │
        │   "screenshot     │   POST /workflows  │
        │    example.com"   │   /publish         │
        │                   │                    │
        │   ◀───────────────│◀───────────────────│
        │   [screenshot     │   poll for result  │
        │    base64]        │                    │
  1. Claude calls an MCP tool (e.g., cap_browser_screenshot_v1)
  2. Bridge creates a single-node workflow
  3. Coordinator dispatches to the best available agent
  4. Bridge polls for result
  5. Result returned to Claude

Protocol Compliance

This bridge uses the standard Nooterra protocol:

License

MIT