MCP Server Framework - v1.0.0
    Preparing search index...

    Fluent builder for constructing MCP servers.

    Provides a declarative API for configuring all aspects of an MCP server including tools, resources, prompts, transport, and lifecycle hooks.

    const server = new McpServerBuilder()
    .withOptions({
    name: 'my-mcp-server',
    version: '1.0.0',
    transport: { mode: 'stdio' },
    })
    .withToolProvider(myToolRegistry)
    .build();

    await server.start();

    Implements

    Index

    Constructors

    Methods