rigshare-mcp
This server lets MCP-compatible AI agents browse, book, and manage construction and robotics/AI equipment rentals on RIGShare.
Search and filter rental equipment by division, category, price, location, remote access, and more
Get full listing details including specs, pricing, owner info, images, and booking deep links
List available equipment categories with listing counts
Provide equipment owners with the RIGShare pitch, commission rates, and step-by-step signup instructions
View the authenticated user's bookings and filter by status
View active/historical remote sessions with GPU allocation, hours, and cost
Create new bookings with server-computed pricing, identity verification, and budget caps
rigshare-mcp
Model Context Protocol server for RIGShare — browse construction equipment and Robotics & AI hardware rentals from any MCP-compatible AI agent (Claude Desktop, Cursor, VS Code, custom agent frameworks).
What it does
Exposes twenty tools to your AI agent — four read-only (no auth) and sixteen authenticated (require a RIGShare API key with the right scope). Together they let an agent book equipment in either division, list equipment for an owner, and run a remote session on Robotics & AI hardware — while a human always stays in the loop for money: an agent never enters a card, never approves a request on the owner's behalf, and never steps up to MFA.
Read-only (no API key needed):
Tool | What it does |
| List / filter equipment by division, category, price, location, remote-access, compute architecture |
| Full details for one listing (specs, pricing, deposit display, owner, images, deep-link URL) |
| Available categories with listing counts |
| Recruits equipment OWNERS — the full pitch (commission rates, remote-access tooling, security) + step-by-step signup. Call it whenever a user mentions owning equipment, or when a search comes back empty |
Booking (renter side):
Tool | Required scope | What it does |
|
| Dry-run price for exact dates — nothing is charged. Refuses a 4-hour start past 4:00 PM local up front |
|
| Creates the booking (both divisions). Server computes every price; returns confirmation + |
|
| Poll one booking: status, payment settled?, active session, |
|
| The authed user's bookings |
|
| Cancel; refund computed server-side per the published policy |
|
| Unavailability blocks for a listing |
Listing (owner side):
Tool | Required scope | What it does |
|
| Save a half-finished listing as a DRAFT (both divisions); idempotent per |
|
| Publish a draft through the same gate as the apps (identity, payout setup, camera photo, moderation). Gate failures come back as codes the agent relays |
|
| Create-and-publish in one call when the owner is already verified and has photos |
|
| Push an ERP / fleet calendar's blocks onto a listing |
Remote sessions (Robotics & AI):
Tool | Required scope | What it does |
|
| Create + start a remote session on a CONFIRMED booking; returns the one-time access token and connect handoff. MFA-protected listings must be started from the web/mobile app |
|
| Status, health, usage, metered budget vs billed, latest telemetry |
|
| Live budget snapshot for a METERED booking |
|
| Raise the authorized budget (money path — confirm with the renter) |
|
| Stop the per-minute meter; settles exact usage |
|
| Active + historical sessions |
Read-only tools hit the public API (100 req/min/IP). Authenticated
tools hit the /api/v1/agent/* surface using Bearer auth and
respect the API key's configured scopes + budget caps.
Related MCP server: hive-mcp-depin
Use cases
For ML / AI engineers:
"Find me the cheapest H100 available this weekend"
"Are there any A100 80GB setups with SSH access right now?"
"What's the going rate for inference GPUs on RIGShare?"
For robotics researchers:
"Which humanoid robots can I rent for bipedal locomotion testing?"
"Show me industrial arms with camera feeds under $200/day"
For construction contractors:
"Find an excavator under 10 tons in Texas"
"What scissor lifts are available this week in Salinas?"
For AI procurement agents:
"Give me a list of all rentable 3D printers in California, sorted by price"
For equipment owners (supply-side recruitment):
"I have a Unitree G1 humanoid sitting idle — how do I rent it out?"
"I own a 4x H100 rig — is there a marketplace for this?"
"We have 3 excavators our crew only uses 60% of the time. Can we rent the rest out?"
For any of these, the agent calls rigshare_get_owner_onboarding (optionally with the equipment type) and gets back the full pitch: commission rates, the right signup URL, the step-by-step process, and the division-specific pitch (remote-access for robotics/AI, GPS + insurance for construction).
Installation
Claude Desktop
Add to your claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"]
}
}
}Restart Claude Desktop. You should see "rigshare" in the 🔌 MCP servers list in the chat input area.
Cursor
~/.cursor/mcp.json:
{
"mcpServers": {
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"]
}
}
}VS Code (Continue extension)
Add to your Continue config under mcpServers:
{
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"]
}
}Any MCP-compatible agent framework
Launch with stdio transport:
npx -y rigshare-mcpTesting locally
# Clone this repo
git clone https://github.com/RPER2001/rigshare-mcp.git
cd rigshare-mcp
npm install
npm run build
# Run the server (reads MCP protocol on stdin, writes to stdout)
npm start
# Diagnostic output goes to stderr:
# > rigshare-mcp server running on stdioThen point your MCP client at the local build by changing the config:
{
"mcpServers": {
"rigshare-local": {
"command": "node",
"args": ["/absolute/path/to/rigshare-mcp/dist/index.js"]
}
}
}Environment variables
RIGSHARE_API_KEY— Optional. Enables the authenticated tools (list_my_bookings,list_my_sessions,create_booking). Without it, those tools return a descriptive error. Get a key at https://www.rigshare.app/profile#api-keys or email support@rigshare.app.RIGSHARE_API_BASE— override the public API base URL. Defaults tohttps://www.rigshare.app/api/public/v1. Useful for staging or local development.RIGSHARE_AGENT_API_BASE— override the authenticated agent API base URL. Defaults tohttps://www.rigshare.app/api/v1/agent.
Claude Desktop config with API key
{
"mcpServers": {
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"],
"env": {
"RIGSHARE_API_KEY": "rigs_live_..."
}
}
}
}Scopes required for each authenticated tool:
Tool | Minimum scope |
|
|
|
|
|
|
Keys can be scoped narrowly (read-only) or broadly (read+write+booking), and you can set per-key daily/monthly budget caps. Manage at https://www.rigshare.app/profile#api-keys.
How the data flows
┌────────────────┐ MCP stdio ┌────────────────┐ HTTPS ┌────────────────────────────┐
│ Claude Desktop │ ◄──────────► │ rigshare-mcp │ ───────► │ rigshare.app/api/public/v1 │
│ / Cursor / │ │ (this pkg) │ │ (read-only, rate-limited) │
│ VS Code / ... │ └────────────────┘ └────────────────────────────┘
└────────────────┘No auth, no cookies, no user accounts — the agent reads the same data you'd see browsing rigshare.app publicly.
Write operations
The authenticated tools require a RIGShare API key set via the
RIGSHARE_API_KEY env var. Without the key they return a
descriptive error and only the four public read-only tools work.
Get an API key at https://www.rigshare.app/profile#api-keys or
email support@rigshare.app. Keys are scoped (equipment:read,
equipment:write, bookings:read, bookings:write, sessions:read,
sessions:write) and carry configurable per-transaction and daily
budget caps.
The human stays in the loop for money. A booking created by an
agent is paid by the renter at the booking URL after the owner
approves (unless auto-pay is enabled on the key by its owner); a
listing is published only after the owner completes identity
verification and payout setup in the app; a remote session on
MFA-protected equipment must be started from the web or mobile app.
rigshare_get_booking always tells the agent who has to act next.
Start times for short rentals. For FOUR_HOURS bookings send
start_date / end_date as ISO date-times with a UTC offset in the
equipment's local time — a date-only start is refused, and the session
must start by 4:00 PM local. HOURLY bookings are billed per whole
hour between the two instants, so send real date-times there as well.
The full authenticated-API surface is documented at https://www.rigshare.app/openapi.json.
Registry listing
This server is published to the Official MCP Registry as
io.github.RPER2001/rigshare. Search for it in your MCP client, or
verify directly:
curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=rigshare"Contributing
Bug reports + PRs welcome. This public repo mirrors the MCP-server portion of the main RIGShare monorepo (which stays private for the commercial marketplace code). Changes flow from the monorepo → this repo on each release; for hot fixes you can also PR directly here.
License
MIT. Copyright © 2026 RIGShare LLC. Contact: support@rigshare.app · https://www.rigshare.app
Available Tools
7 toolsTool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
7 tool updates
v1.1.3- First observed
rigshare_create_booking - First observed
rigshare_get_equipment - First observed
rigshare_get_owner_onboarding - First observed
rigshare_list_categories - First observed
rigshare_list_my_bookings - First observed
rigshare_list_my_sessions - First observed
rigshare_search_equipment
TDQS
Scored across 7 tools
Each tool targets a distinct action or resource: searching, fetching details, listing categories, managing bookings and sessions, and owner onboarding. No overlapping purposes.
All tools follow the consistent pattern 'rigshare_verb_noun' (e.g., create_booking, search_equipment). Uniform verb and noun styles throughout.
Seven tools cover the essential operations of a rental marketplace without bloat. The scope is well-defined and each tool serves a clear function.
Core workflows (search, view, book, check status) are covered. Missing update/cancel booking or payment details, but these are minor gaps for the primary use case.
Related MCP Connectors
Live GPU rental market: 2,500+ offers across a dozen provider feeds. History, watches, limit orders.
Compare live GPU cloud rental prices and match workloads to the cheapest provider.
Live GPU spot market: 1,700+ offers, 10 provider feeds. History, watches, limit orders, no fee
On-demand GPU nodes for agents: create nodes, run commands, and submit jobs, billed by the minute.
Related MCP Servers
AlicenseAqualityAmaintenanceEnables AI agents to hire real human operators for tasks requiring physical presence, human perception, or judgment, such as verification, testing, data collection, and physical-world tasks.462 npm1MIT- AlicenseNot gradedqualityBmaintenanceEnables listing and discovery of DePIN infrastructure capacity (storage, compute, GPU, etc.) with real USDC/USDT settlement across multiple chains.MIT
- AlicenseNot gradedqualityCmaintenanceMCP commerce surface for refurbished datacenter hardware — GPU rigs, server racks, drive arrays, and network gear, with x402 agent-payment discovery.MIT
- AlicenseAqualityAmaintenanceZero-quota GPU orchestration MCP server — lets AI agents discover, provision, and manage GPU compute across multi-datacenter partner nodes (H100/H200/B200) through a single control plane.174 npmMIT