Ophir MCP Server

Ophir protocol tools for AI agent discovery, negotiation, and settlement

Local serverstdioTypeScript

What is the Ophir MCP server?

Most developer tooling work still happens through a UI a human drives. Ophir MCP server moves it into the conversation instead. Ophir protocol tools for AI agent discovery, negotiation, and settlement.

The short version

An open protocol for AI agents to autonomously discover, negotiate, and transact with each other.

The tools it exposes

The server publishes 7 tools. What each one is for:

  • Transport — JSON-RPC 2.0 over HTTP
  • Identity — did:key with Ed25519 public keys (0xed01 multicodec prefix)
  • Signing — Ed25519 via tweetnacl, JCS canonicalization (RFC 8785)
  • Settlement — Solana Anchor program with PDA-derived USDC escrow vaults
  • Messages — RFQ, Quote, Counter, Accept, Reject, Dispute
  • Package — Description
  • Document — The Document tool exposed by this server

Getting it running

The server ships on npm as @ophirai/router, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Ophir's toolset — Transport, Identity, Signing and 4 more — is a fair guide to whether it matches your workflow. It is maintained by Ophir-ai-creator; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • 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.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
TransportJSON-RPC 2.0 over HTTP
Identitydid:key with Ed25519 public keys (0xed01 multicodec prefix)
SigningEd25519 via tweetnacl, JCS canonicalization (RFC 8785)
SettlementSolana Anchor program with PDA-derived USDC escrow vaults
MessagesRFQ, Quote, Counter, Accept, Reject, Dispute
PackageDescription
DocumentThe Document tool exposed by this server.

How to install the Ophir MCP server

{
  "mcpServers": {
    "ophir": {
      "command": "npx",
      "args": ["@ophirai/mcp-server"]
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Ophir to Transport.
  • Use Ophir to Identity.
  • Use Ophir to Signing.

Frequently asked questions

It connects Ophir to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Transport, Identity, Signing, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ophir directly.