npmplus-mcp-server
Version:
Production-ready MCP server for intelligent JavaScript package management. Works with Claude, Windsurf, Cursor, VS Code, and any MCP-compatible AI editor.
15 lines • 430 B
TypeScript
import { z } from "zod";
export declare const tools: {
name: string;
description: string;
inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
}[];
export declare const handlers: Map<string, typeof handleDebugVersion>;
declare function handleDebugVersion(args: unknown): Promise<{
content: {
type: string;
text: string;
}[];
}>;
export {};
//# sourceMappingURL=management-tools.d.ts.map