Bowmark AIdocs

MCP Registry

Search or browse the official Model Context Protocol server registry — find a published MCP server by name and get its install or connect URL.

Also known as: mcp registry, mcp directory, mcp server directory, model context protocol registry, mcp registry listing, mcp directory listing, mcp directory submission

Call it

bowmark.mcp_registry.search(query?: string, limit?: number, options?: CallOptions): Promise<McpRegistrySearchResult>

Functions

FunctionWhat it does
searchLists or searches the official MCP server registry (registry.modelcontextprotocol.io) for published Model Context Protocol servers.

Types

interface McpRegistryEntry {
  name: string;
  title: string | null;
  description: string;
  version: string;
  repositoryUrl: string | null;
  remoteUrl: string | null;
  status: string;
}

interface McpRegistrySearchResult {
  servers: McpRegistryEntry[];
  warnings: string[];
}

type CallOptions = {
  timeoutMs?: number   // per-provider budget in ms, default 30000, clamped to 1000-55000.
                       // A provider slower than this is DROPPED from the results and
                       // NAMED in warnings — never silently absent
}

Examples

const { servers } = await bowmark.mcp_registry.search("weather");

Providers behind it

Provider
mcp_registryMCP Registry