mcp-adr-analysis-server
Version:
MCP server for analyzing Architectural Decision Records and project architecture
20 lines • 521 B
JavaScript
/**
* Tool Context for MCP Protocol
*
* Provides logging and progress notification capabilities to tools,
* following MCP best practices for real-time user feedback.
*
* @see https://modelcontextprotocol.io/docs/concepts/tools
*/
/**
* Create a no-op context for tools that don't support progress
*/
export function createNoOpContext() {
return {
info: () => { },
report_progress: () => { },
warn: () => { },
error: () => { },
};
}
//# sourceMappingURL=tool-context.js.map