Back to Browse

Nimbus MCP Server

Developer ToolsUse Caution4.0LocalRemote
Free

Find and book verified local home service professionals through AI agents.

About

Find and book verified local home service professionals through AI agents.

Remote endpoints: streamable-http: https://mcp.hirenimbus.com/mcp

Security Report

4.0
Use Caution4.0High Risk

This MCP server implements OAuth2 with phone/OTP authentication for a home-services marketplace, with generally sound architecture but several security concerns. Key issues include: (1) unvalidated external API calls that could be exploited for SSRF or data exfiltration, (2) broad file system and network permissions without strict bounds, (3) sensitive data (phone numbers, addresses, profiles) logged in plaintext, and (4) missing input validation on critical booking parameters. While the OAuth/PKCE implementation is solid and credentials are properly managed, these vulnerabilities create moderate risk for data leakage and unauthorized actions. Supply chain analysis found 4 known vulnerabilities in dependencies (0 critical, 1 high severity).

3 files analyzed · 14 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

system_info

Check that this permission is expected for this type of plugin.

What You'll Need

Set these up before or after installing:

Provider search endpointOptional

Environment variable: PROVIDERS_API

Provider profile & reviews base URLOptional

Environment variable: REVIEWS_API

Job creation endpointOptional

Environment variable: BOOKING_API

City/text to coordinates resolutionOptional

Environment variable: COORDS_RESOLVE_API

ZIP to city resolutionOptional

Environment variable: ZIP_RESOLVE_API

SMS notification to homeownerOptional

Environment variable: SEND_BOOK_NOTIFICATION_API

Slack job alertsOptional

Environment variable: SEND_JOB_TO_SLACK_API

Post MCP auth/tool events to Slack (default: true)Optional

Environment variable: MCP_MONITOR_ENABLED

Slack channel for MCP monitor events (default: mcp-monitor)Optional

Environment variable: MCP_MONITOR_SLACK_CHANNEL

Slack webhook for monitor events (defaults to SEND_JOB_TO_SLACK_API)Optional

Environment variable: MCP_MONITOR_SLACK_API

Access token lifetime in seconds (default: 3600)Optional

Environment variable: OAUTH_TOKEN_TTL

Requests per minute per IP (default: 60, 0 = off)Optional

Environment variable: RATE_LIMIT_RPM

Canonical public URL for OAuth issuer/audienceOptional

Environment variable: PUBLIC_BASE_URL

How to Install & Connect

Available as Local & Remote

This plugin can run on your machine or connect to a hosted endpoint. during install.

Documentation

View on GitHub

From the project's GitHub README.

Home Services MCP Server

An open-source, self-hostable Model Context Protocol server for home-service discovery, provider profiles and reviews, homeowner identity, booking requests, and booking follow-up. The server supplies the workflow and MCP interface; each operator supplies the APIs, data, credentials, branding, and deployment environment.

This repository contains no customer data, provider data, API keys, or private production endpoints. It includes one documented public hosted MCP fallback for convenience; operators can replace it with their own endpoint and credentials for a fully self-hosted deployment.

What is included

  • Streamable HTTP MCP transport at /mcp (the root endpoint is also mapped for clients that require it).
  • OAuth 2.0 authorization-code flow with PKCE, when OAuth credentials are configured.
  • Provider search, details, reviews, homeowner profile, booking, previous-job, booking-status, and rebooking workflows.
  • Optional category-specific find/book tool aliases.
  • Input validation, PII-aware logging, outbound host allowlisting, rate limiting, and circuit-breaker behavior.
  • Local ASGI development, a generic Docker image, and AWS SAM/Lambda deployment configuration.

The public MCP contract is intentionally stable. Operators can replace the backends without changing the client-facing tool names or workflow semantics.

Quick start

python3.10 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
cp .env.example .env
# The default setup uses the hosted MCP relay. For self-hosting, edit .env
# with your own upstream MCP endpoint, API URLs, and credentials.
uvicorn src.main:app --reload --port 8000

The server is then available at http://localhost:8000/mcp.

Before opening a release or marketplace review, run the checks in docs/RELEASE_CHECKLIST.md, including:

python3 scripts/audit_public_release.py

For a container build:

docker build -t home-services-mcp .
docker run --env-file .env -p 8000:8080 home-services-mcp

For AWS SAM, provide deployment-specific values through parameter overrides or your secret manager. Do not place secrets in template.yaml, samconfig files, container layers, or source control.

Configuration

Start with .env.example. Empty optional endpoint variables disable the related capability. The upstream MCP relay is the exception: it defaults to the documented public hosted service and can be overridden.

Core operator-owned endpoints:

VariablePurpose
PROVIDERS_APIProvider search endpoint
COORDS_RESOLVE_APIText/coordinate location resolver
ZIP_RESOLVE_APIPostal-code location resolver
GEOCODING_API / GEOCODING_API_KEYOptional address enrichment integration
REVIEWS_APIProvider profile and review endpoint
BOOKING_APIBooking/request creation endpoint
SERVICE_REQUESTS_URLBooking history/status endpoint
SERVICE_REQUESTS_METADATA_URLOptional endpoint for notification metadata
PROFILE_LOOKUP_APIOptional phone/profile lookup endpoint
AUTH_WEBHOOK_URLOptional OTP send/verify endpoint
HOMEOWNER_PROFILE_APIOptional profile-by-token endpoint
CANCEL_BOOKING_APIOptional authenticated, ownership-enforcing cancellation endpoint

Optional integrations include notification endpoints, operator persistence, monitoring webhooks, OAuth, and the OpenAI app verification challenge. All URLs and secrets must be supplied by the operator.

OAuth interoperability

When OAuth is enabled, access and refresh tokens use separate ES256 signing keys; the access-token public verification key is exposed through the metadata jwks_uri. Set OAUTH_ALLOWED_REDIRECT_URIS to the exact hosted or claimed-scheme callbacks your clients use. Native clients may register HTTP loopback callbacks on localhost, 127.0.0.1, or [::1] with any explicit port; these do not need to be enumerated because native apps commonly bind an ephemeral port. Other custom schemes (including arbitrary cursor:// or vscode:// callbacks) are rejected unless their complete URI is explicitly configured, since dynamic registration alone does not prove ownership of a private scheme. Enable OAUTH_DYNAMIC_CLIENT_REGISTRATION_ENABLED to let public PKCE clients obtain unique persisted client ids from /oauth/register; the legacy configured client id and unregistered PKCE clients remain supported.

Use at least 32 cryptographically random bytes for OAUTH_CLIENT_SECRET. The server derives domain-separated ES256 keys from that secret so stateless instances publish and verify the same access-token key without reusing it for refresh-token signatures. OAuth tokens carry an opaque homeowner session id; profile PII and upstream bearer credentials remain in the server-side state store.

Upstream MCP relay

By default, the server relays requests from /upstream/mcp to https://mcp.hirenimbus.com/mcp. Set UPSTREAM_MCP_URL to use an operator-controlled MCP service instead. If the selected upstream requires authentication, set UPSTREAM_MCP_AUTH_TOKEN; no token is bundled, and inbound client authorization is never forwarded automatically.

Review the selected upstream's data handling, retention, terms, and access policy before sending user requests to it. For a fully self-hosted deployment, replace the default upstream and configure the operator-owned business APIs.

Security and data ownership

The server is a programmable integration layer, not a data processor with a built-in tenant. Operators are responsible for:

  • API authorization, tenant isolation, data retention, backups, and deletion;
  • secret storage, rotation, least-privilege scopes, and production network policy;
  • privacy notices, terms, support contacts, regional/legal requirements, and any third-party processing disclosures;
  • confirming that configured APIs do not return more personal information than the MCP client needs.

The default development configuration leaves external business APIs empty. Production deployments should fail closed when a required capability is not configured, use durable shared state for OAuth and idempotency, and keep monitoring disabled unless its endpoint is explicitly configured. Set AUTH_STATE_TABLE_NAME to a shared DynamoDB table and REQUIRE_DURABLE_STATE=true for multi-instance OAuth or booking workloads. Without those settings, the development fallback is process-local and does not provide cross-instance replay protection.

Confirmed booking calls accept an optional client-generated idempotency_key. Clients should reuse that key after a timeout. The configured booking API should also honor the same field; the server never retries an ambiguous booking request automatically.

Testing

Install the development dependencies and run:

pytest -q
ruff check .

Tests must use mocks or local fixtures for external integrations. They must not call a live operator endpoint.

Marketplace package

The server and portable workflow skills are independent of any hosted deployment. A first-party distribution can add a separate marketplace manifest that points to its own hosted MCP URL and branded app, without putting those values in this repository.

The portable home-service workflow is available at skills/home-service-concierge/SKILL.md. Its app handoff uses the operator-configured APP_LINK value.

License

Licensed under the Apache License 2.0. Product names, trademarks, private services, and operator integrations are not included as defaults by this codebase. The documented public hosted MCP fallback is an intentional exception and does not include credentials or customer data.

Reviews

No reviews yet

Be the first to review this server!

Nimbus MCP Server - Find and book verified local home service professionals | MCP Marketplace