@bounded-systems/verbspec-mcp

@bounded-systems/verbspec-mcp

Turns any verb Registry into a real MCP server, where each verb becomes an MCP tool with its own Zod input/output schemas (zero drift).

Category
Visit Server

README

@bounded-systems/verbspec-mcp

Turn any @bounded-systems/verbspec verb Registry into a real MCP server.

verbspec authors each check/generator once as a typed VerbSpec (Zod input/output + a business-meaning summary) and projects it to CLI, Anthropic, OpenAPI, and OpenRPC surfaces — and to MCP tool descriptors. What it deliberately does not ship is a server: the MCP wire protocol, the transport, and result-wrapping. This package is that missing layer, built on the official @modelcontextprotocol/sdk. Hand it a registry, get a server:

import { serveStdio } from "@bounded-systems/verbspec-mcp";
import { registry } from "./registry";

await serveStdio(registry, { name: "spd", version: "0.1.0" });

Every verb becomes an MCP tool whose inputSchema/outputSchema are the verb's own Zod schemas (zero drift), and whose handler runs the verb. Object- shaped outputs are returned as MCP structuredContent (and advertised as an outputSchema); other outputs degrade to text. A verb that throws surfaces as an isError tool result, not a transport crash.

Where this sits

One verb spec, projected everywhere — and every MCP server in the org is the same shape: verbspec verbs → this base → an optional topic layer.

verbspec                author each verb once (Zod input/output + a summary)
  └── verbspec-mcp       the base — any verb Registry → MCP tools   (this package)
        └── <topic>-mcp  optional, domain-specific layers on top, e.g.:
              • verified static-site / website builds — adds read-only,
                Sigstore-verified static responses + a resource catalog
                (today: @bounded-systems/static-mcp)

verbspec-mcp is the only mandatory piece: it just runs the verbs (checks, generators, mutations — whatever they do). Anything domain-specific is an option stacked on top — still nothing but verbspec verbs plus this base plus its own middleware. "Serve a verified website build" is one such topic, not the core; use the base alone to expose any live verb registry as tools.

Install

Published to both registries so either ecosystem can consume it:

deno add jsr:@bounded-systems/verbspec-mcp        # Deno / JSR-native
npm install @bounded-systems/verbspec-mcp         # Node / npm (+ Bun)

@modelcontextprotocol/sdk is a normal dependency; @bounded-systems/verbspec is a peer — the server shares your project's verbspec instance (and its zod), so there's no dual-package split.

API

interface McpServerOptions {
  name?: string;                           // handshake server name (default "verbspec-mcp")
  version?: string;                        // handshake version     (default "0.0.0")
  instructions?: string;                   // handshake instructions (how to use the tools)
  filter?: (verb: AnyVerbSpec) => boolean; // restrict which verbs are exposed
  deps?: () => unknown;                    // inject a shared deps slice into every verb's run
  mapResult?: (out, verb, args) => ToolResult | Promise<ToolResult>; // shape the tool result
}

// Build the configured SDK server WITHOUT a transport — attach your own (e.g. HTTP),
// or register extra surfaces (resources) on the returned server.
function buildMcpServer(registry: Registry, opts?: McpServerOptions): McpServer;

// buildMcpServer + connectStdio. The one-liner most servers want.
function serveStdio(registry: Registry, opts?: McpServerOptions): Promise<void>;

// Connect a server you built yourself to stdio, with stdout hygiene. For servers that
// also register resources and can't use the serveStdio shortcut.
function connectStdio(server: McpServer): Promise<void>;

For an HTTP server, take buildMcpServer(...) and .connect() it to a Streamable HTTP transport from the SDK.

Topic layers: deps + mapResult

A domain-specific server stacks on the base through two seams instead of forking it. deps injects a shared capability slice into every verb's run(input, deps) (dependency injection — one client, or a test mock, for all verbs). mapResult takes control of how a verb's output becomes the tool result (content, structuredContent, _meta, isError). For example, the verified static-site layer threads its verifying client via deps and renders verified bytes + provenance _meta via mapResult — while the base still owns registration, schema validation, and running the verb.

stdout hygiene

serveStdio redirects console.log/info/debug to stderr. The SDK writes JSON-RPC frames to process.stdout, so a verb that logs progress during run() would otherwise interleave and corrupt the stream (in Bun, console.log writes to fd 1 natively — patching process.stdout alone would miss it). Verbs must not write to process.stdout directly; use stderr for diagnostics.

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured