Skip to main content
Glama
NimbleBrainInc

registry-tools

Official

Registry Tools MCP Server

mpak NimbleBrain License: MIT

Search and resolve MCP server packages on the mpak registry. This server lets agents discover available MCP servers, inspect their tools, and check credential requirements before installation.

This is one of the core MCP servers that powers NimbleBrain's agent runtime, giving agents self-service access to the registry. It's open source so you can see how it works, fork it to connect to your own registry, or use it as a reference for building discovery-layer MCP servers.

Install

mpak install @nimblebraininc/registry-tools
claude mcp add registry-tools -- mpak run @nimblebraininc/registry-tools
{
  "mcpServers": {
    "registry-tools": {
      "command": "mpak",
      "args": ["run", "@nimblebraininc/registry-tools"]
    }
  }
}

Related MCP server: agentalmanac-mcp

Tools

Search the mpak registry for available MCP servers.

Parameter

Type

Required

Description

query

string

Yes

Search term (e.g., "weather", "pdf", "finance")

Returns matching packages with name, description, tools, download count, and verification status.

registry_resolve

Get full metadata for a specific package, including credential requirements and version history.

Parameter

Type

Required

Description

package

string

Yes

Package identifier (e.g., "@nimblebraininc/finnhub")

version

string

No

Specific version (omit for latest)

Returns detailed package info including tools, required credentials, license, and homepage.

Configuration

Env Var

Required

Description

REGISTRY_URL

No

mpak registry URL (default: https://registry.mpak.dev)

Extending

Want to adapt this for your own infrastructure?

  • Point REGISTRY_URL at your own registry endpoint

  • Add a registry_browse tool that lists categories or popular servers

  • Add tools that combine search with automatic installation via your orchestrator

  • Fork and modify src/mcp_registry_tools/server.py

Development

git clone https://github.com/NimbleBrainInc/mcp-registry-tools.git
cd mcp-registry-tools

# Install dependencies
uv sync --group dev

# Run all checks (format, lint, typecheck, tests)
make check

# Run the server locally (stdio)
uv run python -m mcp_registry_tools.server

# Run the server locally (HTTP)
make run-http

License

MIT

Available Tools

2 tools
registry_resolveA

Get full metadata for a specific package from the mpak registry.

Includes credential requirements and available tools.

ParametersJSON Schema
NameRequiredDescriptionDefault
packageYesPackage identifier (e.g., '@nimblebraininc/finnhub').
versionNoSpecific version. Omit for latest.

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the burden. It adds useful context that the metadata includes credential requirements and available tools, but does not disclose error handling, pagination, or any read-only guarantees. For a simple read tool, this is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the core purpose, and adds one notable detail about included metadata. There is no fluff or redundant information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the output schema exists, the description doesn't need to explain return structure. It covers the essential purpose and highlights credential requirements/tools. It could mention what happens for unknown packages, but this is a minor gap for a simple lookup tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with clear descriptions for both 'package' and 'version'. The description itself adds no additional parameter semantics beyond what the schema already provides, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function with a specific verb and resource: 'Get full metadata for a specific package from the mpak registry.' It distinguishes itself from the sibling registry_search by focusing on a specific package rather than searching.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when you have a known package identifier and need full metadata, but it does not explicitly mention when to use this tool versus registry_search or provide exclusions/alternatives. Some context is present, but no direct guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updatesv0.1.1
    • First observedregistry_resolve
    • First observedregistry_search

TDQS

A3.9/5.0

Scored across 2 tools

Disambiguation4/5

The two tools have distinct purposes: registry_search is for discovering packages via query, while registry_resolve fetches detailed metadata for a known package. They could be confused if users expect search to return full details, but descriptions clarify the difference.

Naming Consistency5/5

Both tool names follow a consistent pattern: 'registry_' prefix plus a verb (search, resolve). This makes the naming predictable and easy to navigate.

Tool Count3/5

With only 2 tools, the set feels thin for a registry service, which typically includes list, publish, or management operations. However, for a read-only lookup/query server, this minimal set may be intentionally scoped.

Completeness3/5

The tools cover search and detailed lookup, but lack obvious operations like listing all packages, publishing new ones, or updating existing registrations. Depending on the intended use case, this may be acceptable but leaves gaps for broader registry management.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables searching and retrieving detailed information about MCP servers from the official MCP registry. Provides tools to list servers with filtering options and get comprehensive details about specific servers.
    37
    3
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    AI-first MCP server discovery tool that enables agents to search, inspect, and install MCP servers from multiple registries.
    12
    AGPL 3.0