- Implement feature parity between Python and TypeScript MCP versions - Add comprehensive test coverage for all orthogonal tools - Consolidate tools to follow single-tool-multiple-actions pattern - Add bash, git-search, critic, and mode tools - Create multi-platform build system for VS Code, Claude Desktop, and DXT - Add test files for filesystem, search, shell, process, web-fetch, mode, and git-search tools - Fix TypeScript compilation issues and update build scripts - Update package.json with hanzo-ai publisher ID - Successfully build all distribution formats: - VS Code Extension (.vsix) - Claude Desktop MCP package - Claude Code DXT file - Standalone MCP server
12 lines
155 B
JavaScript
12 lines
155 B
JavaScript
|
|
function testFunction() {
|
|
console.log('This is a test');
|
|
return 42;
|
|
}
|
|
|
|
class TestClass {
|
|
constructor() {
|
|
this.value = 'test';
|
|
}
|
|
}
|