import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; import { type CreatePrShepherdOptions, type PrShepherd } from "../api.mts"; export interface CreatePrShepherdMcpServerOptions extends CreatePrShepherdOptions { /** Optional injection point for embedding hosts and focused tests. */ shepherd?: PrShepherd; } /** Creates a local-only MCP server with Shepherd's public operations. */ export declare function createPrShepherdMcpServer(options?: CreatePrShepherdMcpServerOptions): McpServer;