Nimbus MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Nimbus MCP ServerLook up the user account for sarah.chen@example.com"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
š§ Nimbus MCP Server
Standalone Model Context Protocol (MCP) server for the Nimbus Furniture platform.
Provides live user account lookup tools over HTTP, consumed by the nimbus_agent AI support agent.
What is this?
The nimbus_mcp service is a lightweight, independently deployable HTTP server that exposes two tools via FastMCP:
Tool | Description |
| Look up a Nimbus customer account by email address |
| Retrieve plan type, account status, and plan details by user ID |
The agent calls these tools at runtime over HTTP using the MCP protocol ā keeping live user data completely separate from the AI agent logic.
Related MCP server: Ticket Support MCP Server
Project Structure
nimbus_mcp/
āāā server.py # FastMCP server ā defines and exposes MCP tools
āāā data/
ā āāā users.json # Nimbus customer database (8 mock users)
āāā requirements.txt # Minimal dependencies (fastmcp, mcp, python-dotenv)
āāā .gitignore
āāā README.mdTools Exposed
get_user_by_email(email: str) ā dict
Looks up a customer by their email address.
Returns:
{
"found": true,
"id": "usr_001",
"name": "Sarah Chen",
"email": "sarah.chen@example.com",
"plan": "premium",
"account_status": "active",
"last_login": "2026-08-03T10:22:14Z",
"created_at": "2024-03-15T08:00:00Z",
"total_orders": 12,
"store_credit": 25.00
}If not found:
{ "found": false, "error": "No Nimbus Furniture account found for email: x@x.com" }get_user_account_status(user_id: str) ā dict
Returns plan and status details for a user by ID.
Returns (Free plan):
{
"found": true,
"id": "usr_002",
"name": "James Patel",
"plan": "free",
"account_status": "active",
"plan_details": "Nimbus Free: standard shipping rates apply, White Glove Delivery available for $49/item, regular support. Upgrade to Nimbus Premium for $9.99/month..."
}Returns (Premium plan):
{
"found": true,
"id": "usr_001",
"name": "Sarah Chen",
"plan": "premium",
"account_status": "active",
"plan_details": "Nimbus Premium: free standard shipping on all furniture orders, free White Glove Delivery & assembly on large items, 10% member discount..."
}Returns (Suspended):
{
"found": true,
"id": "usr_004",
"name": "Derek Kim",
"plan": "free",
"account_status": "suspended",
"suspension_reason": "Payment dispute ā account under review",
"plan_details": "..."
}Setup
1. Prerequisites
Python 3.10+
2. Create a virtual environment
python -m venv venv
# Windows
venv\Scripts\activate
# macOS / Linux
source venv/bin/activate3. Install dependencies
pip install -r requirements.txt4. Configure environment variables (optional)
The only configurable variable is the port. Create a .env file if needed:
MCP_SERVER_PORT=8001The default port is 8001 if not set.
Running Locally
python server.pyThe MCP server starts at:
http://127.0.0.1:8001/mcpTo verify it's running, check the console output:
INFO: Started server process
INFO: Uvicorn running on http://127.0.0.1:8001ā ļø Always start
nimbus_mcpbeforenimbus_agent. The agent connects to this server on startup and falls back to RAG-only mode if it can't reach it.
Deploying to Render
Deploy as a Web Service from your GitHub repo:
Setting | Value |
Root Directory |
|
Build Command |
|
Start Command |
|
Port |
|
Environment variable to set in Render dashboard:
MCP_SERVER_PORT=8001After deploying, copy the public URL (e.g. https://nimbus-mcp.onrender.com) and set the following in your nimbus_agent Render service:
MCP_SERVER_URL=https://nimbus-mcp.onrender.com/mcpā ļø Deploy
nimbus_mcpfirst, then deploynimbus_agent. The agent needs the MCP URL to be live at startup.
Updating the User Database
The user data lives in data/users.json. Each user record follows this schema:
{
"id": "usr_001",
"email": "user@example.com",
"name": "Full Name",
"plan": "premium | free",
"account_status": "active | suspended",
"last_login": "2026-08-03T10:22:14Z",
"created_at": "2024-03-15T08:00:00Z",
"total_orders": 12,
"store_credit": 25.00,
"suspension_reason": "Optional ā only present if account_status is suspended"
}After editing users.json, restart the server ā the file is loaded once at startup.
Mock Users (for testing)
Plan | Status | |
Premium | Active | |
Free | Active | |
Premium | Active | |
Free | Suspended | |
Premium | Active | |
Free | Active | |
Premium | Active | |
Free | Active |
Requirements
fastmcp>=2.0.0
mcp>=1.0.0
python-dotenv>=1.0.0License
MIT ā free to use, modify, and extend.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Pay-per-use tool marketplace for AI agents. Search, price-check, and call APIs via MCP.
Unified MCP Server is a remote MCP connector for AI agents and vertical AI products that provides access to 22,000+ authorized SaaS tools across 400+ integrations and 24 categories directly inside LLMs (Claude, GPT, Gemini, Cohere). Tools operate only on explicitly authorized customer connections, enabling agents to safely read and write against live third-party systems.
Pocket Agent (aipocketagent.com) MCP server ā read tools for personas, apps, and product info.
Hosted MCP for e-commerce: live product catalog, stock, and pricing for AI agents.
Related MCP Servers
- FlicenseBqualityDmaintenanceAn MCP adapter that maps Coffee Company B2B HTTP APIs to MCP tools, allowing AI agents to query member information, benefits, coupons, and payment statuses. It enables seamless integration for AI assistants to manage coffee-related customer assets and loyalty details through natural language.101-
- FlicenseNot gradedqualityFmaintenanceEnables retrieval of support tickets and user data from a JSON store or ServiceNow via MCP tools, providing context for AI-powered support responses.-
- AlicenseAqualityCmaintenanceExposes NeuralVerge's full API as MCP tools for AI research, extraction, agents, and data enrichment (LinkedIn, email, phone), enabling any MCP-compatible client to call them directly.3016MIT
- FlicenseNot gradedqualityCmaintenanceEnables an AI to perform customer support workflows by looking up customers, retrieving orders, and creating support tickets through MCP tools.5-