rigshare-mcp
rigshare-mcp
RIGShare를 위한 모델 컨텍스트 프로토콜(MCP) 서버 — 모든 MCP 호환 AI 에이전트(Claude Desktop, Cursor, VS Code, 커스텀 에이전트 프레임워크)에서 건설 장비 및 로봇/AI 하드웨어 대여 목록을 탐색하세요.
기능
AI 에이전트에 7가지 도구를 제공합니다. 4개는 읽기 전용(인증 불필요), 3개는 인증 필요(RIGShare API 키 필요) 도구입니다.
읽기 전용(API 키 불필요):
도구 | 기능 |
| 부문, 카테고리, 가격, 위치, 원격 액세스 여부별 장비 목록 조회/필터링 |
| 단일 목록에 대한 상세 정보(사양, 가격, 소유자, 이미지, 딥링크 URL) |
| 목록 개수가 포함된 사용 가능한 카테고리 |
| 장비 소유자 모집 — 전체 제안(수수료율, 원격 액세스 도구, 보안 기능) 및 단계별 가입 안내를 반환합니다. 사용자가 대여하고 싶은 장비를 소유하고 있다고 언급하거나, 검색 결과가 없을 때(해당 카테고리에 소유자가 필요하다는 신호) 이 도구를 호출하세요. |
인증 필요(적절한 범위의 RIGSHARE_API_KEY 환경 변수 필요):
도구 | 필수 범위 | 기능 |
|
| 인증된 사용자의 RIGShare 예약 내역(장비, 날짜, 상태, 합계) |
|
| 활성 및 과거 원격 세션(GPU 할당, 시간, 비용) |
|
| 새 예약 생성. 서버가 가격을 계산하며, 클라이언트 힌트는 무시됩니다. ID 인증, 보증금 보관, 키별 예산 한도를 적용합니다. |
읽기 전용 도구는 공개 API(IP당 분당 100회 요청)를 사용합니다. 인증된 도구는 Bearer 인증을 사용하여 /api/v1/agent/* 인터페이스에 접근하며, API 키에 설정된 범위와 예산 한도를 준수합니다.
Related MCP server: hive-mcp-depin
사용 사례
ML / AI 엔지니어:
"이번 주말에 이용 가능한 가장 저렴한 H100을 찾아줘"
"지금 SSH 액세스가 가능한 A100 80GB 설정이 있나요?"
"RIGShare에서 추론용 GPU의 시세는 얼마인가요?"
로봇 공학 연구원:
"이족 보행 테스트를 위해 대여할 수 있는 휴머노이드 로봇은 무엇인가요?"
"하루 200달러 미만의 카메라 피드가 포함된 산업용 로봇 팔을 보여줘"
건설 계약자:
"텍사스에 있는 10톤 미만의 굴착기를 찾아줘"
"이번 주 살리나스에서 대여 가능한 가위형 리프트는 무엇인가요?"
AI 조달 에이전트:
"캘리포니아에서 대여 가능한 모든 3D 프린터 목록을 가격순으로 정리해서 알려줘"
장비 소유자(공급 측면 모집):
"사용하지 않는 Unitree G1 휴머노이드가 있는데 어떻게 대여하나요?"
"4x H100 장비를 소유하고 있는데, 이를 위한 마켓플레이스가 있나요?"
"우리 팀이 60%의 시간만 사용하는 굴착기가 3대 있습니다. 나머지를 대여할 수 있나요?"
이러한 경우 에이전트는 rigshare_get_owner_onboarding을 호출하여(장비 유형을 선택적으로 포함) 수수료율, 올바른 가입 URL, 단계별 절차, 부문별 제안(로봇/AI를 위한 원격 액세스, 건설을 위한 GPS + 보험)을 포함한 전체 제안을 반환받습니다.
설치
Claude Desktop
claude_desktop_config.json(설정 → 개발자 → 설정 편집)에 추가하세요:
{
"mcpServers": {
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"]
}
}
}Claude Desktop을 재시작하세요. 채팅 입력 영역의 🔌 MCP 서버 목록에 "rigshare"가 표시되어야 합니다.
Cursor
~/.cursor/mcp.json:
{
"mcpServers": {
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"]
}
}
}VS Code (Continue 확장 프로그램)
mcpServers 아래에 Continue 설정을 추가하세요:
{
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"]
}
}모든 MCP 호환 에이전트 프레임워크
stdio 전송으로 실행:
npx -y rigshare-mcp로컬 테스트
# 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 stdio그런 다음 설정을 변경하여 MCP 클라이언트가 로컬 빌드를 가리키도록 하세요:
{
"mcpServers": {
"rigshare-local": {
"command": "node",
"args": ["/absolute/path/to/rigshare-mcp/dist/index.js"]
}
}
}환경 변수
RIGSHARE_API_KEY— 선택 사항. 인증된 도구(list_my_bookings,list_my_sessions,create_booking)를 활성화합니다. 키가 없으면 해당 도구는 설명 오류를 반환합니다. https://www.rigshare.app/profile#api-keys 에서 키를 받거나 support@rigshare.app으로 이메일을 보내세요.RIGSHARE_API_BASE— 공개 API 기본 URL을 재정의합니다. 기본값은https://www.rigshare.app/api/public/v1입니다. 스테이징 또는 로컬 개발에 유용합니다.RIGSHARE_AGENT_API_BASE— 인증된 에이전트 API 기본 URL을 재정의합니다. 기본값은https://www.rigshare.app/api/v1/agent입니다.
API 키가 포함된 Claude Desktop 설정
{
"mcpServers": {
"rigshare": {
"command": "npx",
"args": ["-y", "rigshare-mcp"],
"env": {
"RIGSHARE_API_KEY": "rigs_live_..."
}
}
}
}각 인증된 도구에 필요한 범위:
도구 | 최소 범위 |
|
|
|
|
|
|
키는 좁게(읽기 전용) 또는 넓게(읽기+쓰기+예약) 범위를 지정할 수 있으며, 키별 일일/월간 예산 한도를 설정할 수 있습니다. https://www.rigshare.app/profile#api-keys 에서 관리하세요.
데이터 흐름
┌────────────────┐ MCP stdio ┌────────────────┐ HTTPS ┌────────────────────────────┐
│ Claude Desktop │ ◄──────────► │ rigshare-mcp │ ───────► │ rigshare.app/api/public/v1 │
│ / Cursor / │ │ (this pkg) │ │ (read-only, rate-limited) │
│ VS Code / ... │ └────────────────┘ └────────────────────────────┘
└────────────────┘인증, 쿠키, 사용자 계정이 없으며, 에이전트는 사용자가 rigshare.app을 공개적으로 탐색할 때 보는 것과 동일한 데이터를 읽습니다.
쓰기 작업
3개의 인증된 도구(rigshare_list_my_bookings, rigshare_list_my_sessions, rigshare_create_booking)는 RIGSHARE_API_KEY 환경 변수를 통해 설정된 RIGShare API 키가 필요합니다. 키가 없으면 해당 도구는 설명 오류를 반환하며 4개의 공개 읽기 전용 도구만 작동합니다.
https://www.rigshare.app/profile#api-keys 에서 API 키를 받거나 support@rigshare.app으로 이메일을 보내세요. 키는 범위가 지정되며(bookings:read, bookings:write, sessions:read, sessions:write) 구성 가능한 일일/월간 예산 한도가 적용됩니다.
전체 인증 API 인터페이스는 https://www.rigshare.app/openapi.json 에 문서화되어 있습니다.
레지스트리 등록
이 서버는 공식 MCP 레지스트리에 io.github.RPER2001/rigshare로 게시되어 있습니다. MCP 클라이언트에서 검색하거나 직접 확인하세요:
curl "https://registry.modelcontextprotocol.io/v0.1/servers?search=rigshare"기여
버그 리포트 및 PR을 환영합니다. 이 공개 저장소는 주요 RIGShare 모노레포(상업용 마켓플레이스 코드는 비공개 유지)의 MCP 서버 부분을 미러링합니다. 변경 사항은 릴리스마다 모노레포에서 이 저장소로 흐르며, 핫픽스의 경우 여기에서 직접 PR을 보낼 수도 있습니다.
라이선스
MIT. Copyright © 2026 RIGShare LLC. 연락처: 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