loading…
Search for a command to run...
loading…
A read-only MCP server that connects AI assistants to the OfficeRnD coworking and flex-space management platform. It enables natural language queries for commun
A read-only MCP server that connects AI assistants to the OfficeRnD coworking and flex-space management platform. It enables natural language queries for community members, space bookings, billing records, and office resources.
A read-only Model Context Protocol (MCP) server that connects AI assistants to the OfficeRnD coworking and flex-space management platform. Query members, companies, bookings, billing, and more through natural language.
This server exposes OfficeRnD data through 5 domain-grouped tools, covering 25+ entity types:
| Tool | Entities | Example queries |
|---|---|---|
| community | Members, companies, memberships, check-ins, contracts, visits, visitors, opportunities | "List all active members" / "Show me visits from last week" |
| space | Resources, bookings, booking occurrences, floors, assignments, amenities, passes, credits | "What meeting rooms are available?" / "List bookings for today" |
| billing | Payments, fees, plans, coin/credit stats | "Show pending payments" / "Get credit balance for March" |
| collaboration | Events, tickets, posts | "List open tickets" / "What events are coming up?" |
| settings | Locations, resource types, business hours, custom properties | "List all office locations" |
All tools are read-only — no data can be created, modified, or deleted.
git clone https://github.com/MrBoor/officernd-mcp.git
cd officernd-mcp
npm install
npm run build
Set three environment variables (via .env file or directly):
OFFICERND_CLIENT_ID=your_client_id
OFFICERND_CLIENT_SECRET=your_client_secret
OFFICERND_ORG_SLUG=your_organization_slug
The org slug is the identifier in your OfficeRnD URL: app.officernd.com/.../{your_org_slug}.
claude_desktop_config.json:{
"mcpServers": {
"officernd": {
"command": "node",
"args": ["/absolute/path/to/officernd-mcp/build/index.js"],
"env": {
"OFFICERND_CLIENT_ID": "your_client_id",
"OFFICERND_CLIENT_SECRET": "your_client_secret",
"OFFICERND_ORG_SLUG": "your_organization_slug"
}
}
}
}
Cmd+, on macOS / Ctrl+, on Windows).~/.chatgpt/mcp.json:{
"mcpServers": {
"officernd": {
"command": "node",
"args": ["/absolute/path/to/officernd-mcp/build/index.js"],
"env": {
"OFFICERND_CLIENT_ID": "your_client_id",
"OFFICERND_CLIENT_SECRET": "your_client_secret",
"OFFICERND_ORG_SLUG": "your_organization_slug"
}
}
}
}
Note: MCP support requires the ChatGPT desktop app (macOS or Windows) — it is not available in the web version. Requires a Plus, Team, or Enterprise subscription.
Option A — CLI command (recommended):
claude mcp add officernd \
-e OFFICERND_CLIENT_ID=your_client_id \
-e OFFICERND_CLIENT_SECRET=your_client_secret \
-e OFFICERND_ORG_SLUG=your_org_slug \
-s user \
-- node /absolute/path/to/officernd-mcp/build/index.js
Use -s project instead of -s user to scope to the current project only.
Option B — Project config file:
A .mcp.json is included in the repo. Fill in your credentials:
{
"mcpServers": {
"officernd": {
"type": "stdio",
"command": "node",
"args": ["build/index.js"],
"env": {
"OFFICERND_CLIENT_ID": "your_client_id",
"OFFICERND_CLIENT_SECRET": "your_client_secret",
"OFFICERND_ORG_SLUG": "your_organization_slug"
}
}
}
}
Verify: Run /mcp inside Claude Code to check the server status.
Each tool accepts an action (list, get, or a special action), an entity type, and optional filters. All support cursor-based pagination via cursorNext (max 50 results per page).
Query community/people data.
| Entity | Actions | Filters |
|---|---|---|
members |
list, get | status, email, name, company, location |
companies |
list, get | name, status, location |
memberships |
list, get | member, company, status |
checkins |
list, get | member, location, startAfter, startBefore |
contracts |
list, get | member, company, status |
visits |
list, get | location, startAfter, startBefore |
visitors |
list | (pagination only) |
opportunities |
list, get | status, member, company |
opportunity_statuses |
list | (pagination only) |
Query space/resource data.
| Entity | Actions | Filters |
|---|---|---|
resources |
list, get, status | type, name, location |
bookings |
list, get | resourceId, member, company, location, startAfter, startBefore |
booking_occurrences |
list | seriesStart (required), seriesEnd (required), resourceId, member, location |
floors |
list, get | location, name |
assignments |
list | resourceId, membershipId |
amenities |
list, get | title |
passes |
list, get | member, company |
credits |
list, get | member, company |
Resource types for the type filter: meeting_room, team_room, desk, hotdesk, desk_tr, desk_na.
Query billing/financial data.
| Entity | Actions | Filters |
|---|---|---|
payments |
list, get | status, member, company, documentType, dateFrom, dateTo, sort |
fees |
list | (pagination only) |
plans |
list, get | sort |
Special action — coin_stats: Get coin/credit balance for a member or company in a given month. Parameters: member, company, month (e.g., 2026-03).
Query collaboration data.
| Entity | Actions | Filters |
|---|---|---|
events |
list, get | location, startAfter, startBefore |
tickets |
list, get | status, member, location |
posts |
list, get | (pagination only) |
Query organization configuration.
| Entity | Actions | Filters |
|---|---|---|
locations |
list, get | name |
resource_types |
list | (pagination only) |
business_hours |
list | location |
custom_properties |
list | (pagination only) |
npm run dev # Watch mode — recompiles on changes
npm run inspect # Launch with MCP Inspector for debugging
src/
index.ts # Entry point — env validation, tool registration, stdio transport
auth.ts # OAuth 2.0 client-credentials flow with token caching
client.ts # API client — GET helper, pagination, base URL
tools/
community.ts # Members, companies, memberships, check-ins, contracts, visits
space.ts # Resources, bookings, floors, assignments, amenities
billing.ts # Payments, fees, plans, coin stats
collaboration.ts # Events, tickets, posts
settings.ts # Locations, resource types, business hours, custom properties
Request flow: AI assistant → MCP stdio → tool handler → OAuth token (cached) → HTTP GET → OfficeRnD API → formatted response.
OfficeRnD API v2 enforces rate limits per integration per organization:
| Operation | Per Minute | Per Day |
|---|---|---|
| Read (GET) | 400 | 20,000 |
| Token generation | 5 | — |
This server only performs read operations. OAuth tokens are cached in memory and reused until expiry (with a 60-second buffer), keeping token requests well under the 5/min limit.
If you receive HTTP 429 Too Many Requests, implement exponential backoff and spread requests out rather than bursting. Contact OfficeRnD support for rate limit exceptions if needed.
$in filter operator is capped at 50 valuesДобавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"officernd-mcp-server": {
"command": "npx",
"args": []
}
}
}Payments, customers, subscriptions
110+ tools for AI agents spanning social media, finance, gaming, music, AU-specific services, and utilities. Zero-config local tools plus platform connectors. n
Unified API hub for AI agents with 56+ tools across travel (Amadeus, Sabre), prediction markets (Polymarket), crypto, and weather. Pay-per-call via x402 micropa
Deploy live HTTPS websites in seconds. Instant subdomains ($1 USDC) or custom .xyz domains ($10 USDC) on Base chain. Templates for crypto tokens and AI agent pr