SimRelay MCP Server
Enables AI agents to manage SimRelay SIMs: list, lock, release, read SMS history, and stream incoming messages in real-time via WebSocket.
README
SimRelay MCP Server
An MCP server that lets AI agents work with SimRelay SIMs: list them, lock and release them, read message history, and stream incoming SMS in real time over WebSocket.
Built for Claude Desktop, Claude Code, Cursor, and any other MCP-compatible client.
Tools
| Tool | What it does |
|---|---|
simrelay_login |
Open a browser to sign in to SimRelay (run on first use) |
simrelay_logout |
Forget saved tokens |
list_sims |
List every SIM the user can access (id, phone number, status, country, provider, lock state, …) |
lock_sim |
Acquire an exclusive lock on a SIM by hosted_sim_id |
release_sim_lock |
Release a lock — idempotent |
get_sim_messages |
Paginated SMS history for a SIM (page, per_page up to 100) |
subscribe_to_messages |
Open a WebSocket subscription; new SMS are pushed to the MCP client as notifications/message (logger simrelay-sms) |
unsubscribe_from_messages |
Stop the WebSocket subscription |
See docs/tools.md for full input/output schemas and examples, and docs/realtime.md for how the real-time stream works.
Install
As a Claude Desktop extension (recommended)
Install the bundled .mcpb extension. The first time you ask the assistant to do anything with SimRelay, it will call simrelay_login, which opens your browser. Sign in once; tokens persist to ~/.config/simrelay-mcp/tokens.json (chmod 0600) and refresh automatically.
As an npm package (Claude Code / Cursor / generic MCP)
npm install -g simrelay-mcp-server
Claude Code:
claude mcp add simrelay -- simrelay-mcp
Generic MCP client: configure an stdio server with command simrelay-mcp. From inside any conversation, ask the assistant to "log in to SimRelay" — or run simrelay-mcp login in a terminal beforehand.
Configuration (advanced)
End users don't need to set anything — the OAuth client ID is baked into the build. The following env vars are available for development and self-hosted deployments:
| Env var | Default | Notes |
|---|---|---|
SIMRELAY_OAUTH_CLIENT_ID |
built-in | Override the bundled OAuth client (dev/staging only). |
SIMRELAY_API_BASE_URL |
https://simrelay.com |
Point at staging or a self-hosted instance. |
SIMRELAY_OAUTH_SCOPES |
mobile:device |
Space-separated scopes. |
SIMRELAY_TOKEN_FILE |
~/.config/simrelay-mcp/tokens.json |
Override token storage path. |
See docs/configuration.md for the full reference.
Real-time messages
After calling subscribe_to_messages, each new SMS is delivered to the MCP client as an info-level logging notification with the structured payload:
{
"event": "sms.received",
"sim_id": 42,
"from": "+491701234567",
"text": "Your verification code is 123456",
"received_at": "2026-05-12T10:00:00Z",
"raw": { /* full SimRelay event payload */ }
}
In Claude Desktop these surface inline in the conversation. Agents can react to them within the same session — e.g. extract an OTP and submit it. Details: docs/realtime.md.
CLI
simrelay-mcp Start the MCP server on stdio (default)
simrelay-mcp login Sign in with SimRelay via OAuth (opens browser)
simrelay-mcp logout Forget saved tokens
simrelay-mcp help Show help
Security
- Credentials never travel through tool arguments. OAuth happens out-of-band in your browser; tokens stay on disk.
- Token file is created with
0600permissions on POSIX (~/.config/simrelay-mcp/tokens.jsonby default). - All requests use
Authorization: Bearer <access_token>. Tokens are refreshed automatically before expiry.
Development
git clone https://github.com/simrelay/mcp.git
cd mcp
npm install
npm run build
npm test # node:test suite
npm run dev # tsx watch entry point
See CONTRIBUTING.md for how to develop against a personal SimRelay OAuth client without any secrets.
Troubleshooting
- **
Not authenticated. Run \simrelay-mcp login` first.** — your token file is missing or empty. Runsimrelay-mcp login`. Token refresh failed: 401— your refresh token expired or was revoked. Runsimrelay-mcp logout && simrelay-mcp login.SIMRELAY_OAUTH_CLIENT_ID is not set— export the env var before starting the server / running login.- Browser does not open during login — the URL is printed to stderr. Copy it into a browser manually.
- WebSocket disconnects repeatedly — the server auto-reconnects with exponential backoff (5s → 60s). If it never reaches
READY, check that the registered OAuth scopes include broadcasting permissions.
License
ISC
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.