Bowmark AIdocs

MCP.so

The mcp.so directory of published MCP servers — substring-search listings by slug/name and get each match's title, description, category, publisher and…

The mcp.so directory of published MCP servers — substring-search listings by slug/name and get each match's title, description, category, publisher and page url.

Domain: mcp.so

Also known as: MCP.so, mcp.so

Call it directly

bowmark.providers.mcp_so.search(query: string, limit?: number): Promise<McpSoSearchResult>

Functions

FunctionWhat it does
searchSearches the mcp.so directory of published MCP servers.

Types

interface McpSoListing {
  slug: string;
  name: string;
  description: string;
  category: string | null;
  author: string | null;
  url: string;
  imageUrl: string | null;
}
interface McpSoSearchResult {
  results: McpSoListing[];
  warnings: string[];
}