OpenClaw
Agent profileUse a remote MCP server entry for the Wire context endpoint.
{
"mcpServers": {
"wire-context": {
"transport": "streamable-http",
"url": "https://mcp.wire.network/mcp"
}
}
}
Read-only context control plane
Connect agents to deployed-testnet and mainnet-candidate context without giving them write access to worktrees. The server exposes generated state indexes, sync reports, repo context docs, and repo specs.
https://mcp.wire.network/mcp
Install options
These snippets target remote HTTP MCP support. If your client version only supports stdio, use the local fallback in the test section against a checked-out `wire-context-loader` repo.
Use a remote MCP server entry for the Wire context endpoint.
{
"mcpServers": {
"wire-context": {
"transport": "streamable-http",
"url": "https://mcp.wire.network/mcp"
}
}
}
Add the endpoint as a named context source for Hermes builds that support HTTP MCP.
hermes mcp add wire-context \
--transport http \
--url https://mcp.wire.network/mcp
Register Wire as a remote MCP server from the Claude Code CLI.
claude mcp add --transport http wire-context https://mcp.wire.network/mcp
Add this block to the project or user OpenCode config.
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"wire-context": {
"type": "remote",
"url": "https://mcp.wire.network/mcp",
"enabled": true
}
}
}
Use the remote URL when your Codex build supports HTTP MCP servers.
[mcp_servers.wire-context]
url = "https://mcp.wire.network/mcp"
What agents can read
The MCP server reads committed files from `profiles/`, `tracked/index/`, `tracked/repos/`, and `tracked/repo-specs/`. It does not fetch, clone, fast-forward, reset, or write files.
wire://profiles
wire://profiles/testnet-deployed/sync-report
wire://profiles/mainnet-candidate/codebase-state
wire://profiles/{profile}/repos/{repo}
wire://repos/{repo}/context
wire://repos/{repo}/spec
Smoke test
curl https://mcp.wire.network/health
curl -s https://mcp.wire.network/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2024-11-05","capabilities":{},"clientInfo":{"name":"smoke","version":"0"}}}'
python3 /path/to/wire-context-loader/scripts/wire-mcp.py