Xaip Protocol MCP Server

XAIP is a provider-neutral signed execution evidence layer for AI agent tool calls. It records co-signed receipts — both the executing agent and the

Local serverstdioTypeScript

What is the Xaip Protocol MCP server?

XAIP is a provider-neutral signed execution evidence layer for AI agent tool calls. It records co-signed receipts — both the executing agent and the caller sign the same canonical record, so neither side can unilaterally fabricate one —. The xaip protocol mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

Its toolset

Everything the assistant can do here goes through one of these:

  • Method — Endpoint
  • GET — /v1/servers
  • POST — /v1/select

Configuration

You will need one environment variable: XAIP_DISABLED. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at tsx on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Xaip Protocol's toolset — Method, GET, POST — is a fair guide to whether it matches your workflow. It is maintained by xkumakichi; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the xaip protocol mcp server does with a few real requests.

Available tools

ToolWhat it does
MethodEndpoint
GET/v1/servers
POST/v1/select

How to install the Xaip Protocol MCP server

{
  "mcpServers": {
    "xaip-protocol": {
      "command": "npx",
      "args": ["-y", "tsx"],
      "env": {
        "XAIP_DISABLED": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
XAIP_DISABLEDConfiguration value read at startup.Optional

Example prompts to try

  • Use Xaip Protocol to Method.
  • Use Xaip Protocol to GET.
  • Use Xaip Protocol to POST.

Frequently asked questions

It connects Xaip Protocol to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (Method, GET, POST) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Xaip Protocol directly.