@nanocollective/nanocoder
Version:
A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter
16 lines • 457 B
TypeScript
import type { MCPServerConfig } from '../types/config.js';
export type MCPTransportType = 'stdio' | 'websocket' | 'http';
export type MCPServer = Omit<MCPServerConfig, 'source'>;
export interface MCPTool {
name: string;
description?: string;
inputSchema?: any;
serverName: string;
}
export interface MCPInitResult {
serverName: string;
success: boolean;
toolCount?: number;
error?: string;
}
//# sourceMappingURL=mcp.d.ts.map