@codervisor/devlog-mcp
Version:
MCP server for managing development logs and working notes
48 lines • 1.19 kB
TypeScript
import { Tool } from '@modelcontextprotocol/sdk/types.js';
import type { DevlogApiClient } from '../api/devlog-api-client.js';
export declare const listProjectsTool: Tool;
export declare const getCurrentProjectTool: Tool;
export declare const switchProjectTool: Tool;
export declare const projectTools: Tool[];
export declare function handleListProjects(apiClient: DevlogApiClient): Promise<{
content: {
type: string;
text: string;
}[];
isError?: undefined;
} | {
content: {
type: string;
text: string;
}[];
isError: boolean;
}>;
export declare function handleGetCurrentProject(adapter: any): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
isError?: undefined;
}>;
export declare function handleSwitchProject(adapter: any, args: {
projectId: string;
}): Promise<{
content: {
type: string;
text: string;
}[];
isError: boolean;
} | {
content: {
type: string;
text: string;
}[];
isError?: undefined;
}>;
//# sourceMappingURL=project-tools.d.ts.map