drio
Open app

Axe Handle Project

Source

An MCP server server

Catalog onlyCatalog onlySTDIO

Overview

Axe Handle is a TypeScript-based code generator designed for creating Model Context Protocol (MCP) servers, specifically targeting Express.js applications.

To use Axe Handle, clone the repository, install the dependencies, and run the generation command with your Protobuf schema to create an MCP server.

  • Schema-driven development using Protobuf schemas. - Compliance with the official MCP protocol. - Optimized TypeScript code generation. - Robust error handling with clear messages. - Developer-friendly workflow for building, running, and testing.
  1. Generating Express.js servers from Protobuf schemas.
  2. Creating production-ready implementations of MCP services.
  3. Facilitating rapid development and iteration of server applications.

Add to your AI client

Use these steps to connect Axe Handle Project in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "axe-handle-dkoosis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-axe-handle-dkoosis"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "axe-handle-dkoosis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-axe-handle-dkoosis"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "axe-handle-dkoosis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-axe-handle-dkoosis"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "axe-handle-dkoosis": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-axe-handle-dkoosis"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "axe-handle-dkoosis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-axe-handle-dkoosis"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "axe-handle-dkoosis": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-axe-handle-dkoosis"
      ]
    }
  }
}

FAQ

Can Axe Handle generate servers for any Protobuf schema?

Yes! As long as the schema adheres to the Protobuf format, Axe Handle can generate a corresponding MCP server.

Is Axe Handle easy to integrate into existing projects?

Yes! Axe Handle is designed to be easily integrated into existing TypeScript projects with minimal setup.

What are the system requirements for using Axe Handle?

Axe Handle requires Node.js and pnpm for installation and running.