Server data from the Official MCP Registry
Search Black-owned businesses in South Florida by category, neighborhood, or need.
Search Black-owned businesses in South Florida by category, neighborhood, or need.
Remote endpoints: sse: https://mcp.thehometeam.io/sse
Valid MCP server (3 strong, 3 medium validity signals). 3 known CVEs in dependencies (0 critical, 3 high severity) Imported from the Official MCP Registry. 1 finding(s) downgraded by scanner intelligence.
Endpoint verified ยท Open access ยท 4 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-jajuanx-hometeam-directory": {
"url": "https://mcp.thehometeam.io/sse"
}
}
}From the project's GitHub README.
Ask any AI about Black-owned businesses in South Florida. This is where the answers come from.
The Hometeam MCP server connects AI assistants to a curated, community-verified directory of Black-owned businesses across Miami-Dade, Broward, and Palm Beach counties. When someone asks Claude, "find me a Black-owned caterer in Broward County," this server provides the real, verified data behind the answer.
Built on the Model Context Protocol (MCP) โ the open standard for connecting AI assistants to external data sources.
This server is listed on the official MCP Registry as io.github.JajuanX/hometeam-directory.
Live endpoint: https://mcp.thehometeam.io/sse
Add to your claude_desktop_config.json:
{
"mcpServers": {
"hometeam": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.thehometeam.io/sse"
]
}
}
}
| Tool | Description |
|---|---|
search_businesses | Search by keyword, category, neighborhood, or county |
get_business_details | Get full profile: hours, contact, reviews, specials |
find_by_specialty | Natural language search ("someone to do box braids near Miramar") |
list_categories | All 14 business categories |
list_neighborhoods | Neighborhoods across Miami-Dade, Broward, Palm Beach |
get_latest_draft_class | Newest businesses added on Draft Day |
| Tier | Limit | Access |
|---|---|---|
| Free | 100 queries/day | No API key needed |
| Pro | 10,000 queries/day | API key (coming soon) |
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"hometeam": {
"command": "npx",
"args": [
"mcp-remote@latest",
"https://mcp.thehometeam.io/sse"
]
}
}
}
Restart Claude Desktop. Then ask:
| Endpoint | Description |
|---|---|
GET https://mcp.thehometeam.io/ | Service info and available tools |
GET https://mcp.thehometeam.io/health | Health check |
GET https://mcp.thehometeam.io/sse | SSE connection for MCP clients |
POST https://mcp.thehometeam.io/messages | MCP message handler |
| Tier | Limit | How to access |
|---|---|---|
| Free | 100 queries/day | No API key required |
| Pro | 10,000 queries/day | API key (coming soon โ join the waitlist at thehometeam.io/developers) |
# Service info
curl https://mcp.thehometeam.io/
# Health check
curl https://mcp.thehometeam.io/health
curl "https://registry.modelcontextprotocol.io/v0/servers/io.github.JajuanX%2Fhometeam-directory/versions/latest"
If you want to run the server locally (for development or contributing):
git clone https://github.com/juanx/hometeam-project-orange.git
cd hometeam-project-orange/hometeam/mcp-server
npm install
cp .env.example .env
# Edit .env โ set MONGO_URI to the same database as the backend
# Run with stdio transport (for Claude Desktop local testing)
npm run start:local
# Run with HTTP/SSE transport (for remote access)
npm start
Claude Desktop config for local:
{
"mcpServers": {
"hometeam": {
"command": "node",
"args": ["/absolute/path/to/hometeam-mcp-server/server.js"],
"env": {
"MONGO_URI": "your_mongodb_connection_string"
}
}
}
}
Important: Use the absolute path from pwd in the mcp-server directory. console.log is redirected to console.error because stdio transport uses stdout for JSON-RPC communication.
The MCP server exposes 6 tools that AI assistants can call:
search_businessesSearch the directory by keyword, category, neighborhood, or county.
{
"query": "jerk chicken",
"county": "Broward",
"limit": 5,
"sort": "most_visited"
}
Returns matching businesses with name, category, neighborhood, rating, contact info, and Hometeam profile link.
get_business_detailsGet everything about a specific business โ hours, contact, social media, reviews, current specials.
{ "slug": "keishas-kitchen" }
Or search by name:
{ "name": "Keisha's Kitchen" }
Returns the full business profile including recent reviews, active specials, and community trust signals.
find_by_specialtyThe smart search. Describe what you need in plain English.
{ "need": "someone to do box braids for my daughter's birthday", "location": "Miramar" }
{ "need": "tax preparation for my small business", "location": "Palm Beach" }
{ "need": "a barber who can do a fresh fade", "location": "Overtown" }
Maps natural language to categories and searches intelligently. This is the tool most AI assistants reach for first.
list_categoriesReturns all business categories in the directory. No parameters needed.
Categories: Restaurants & Food, Hair & Beauty, Health & Wellness, Home Services, Professional Services, Retail & Shopping, Auto Services, Education & Tutoring, Events & Entertainment, Fitness & Training, Technology & Media, Real Estate, Childcare & Family, Arts & Creative.
list_neighborhoodsReturns South Florida neighborhoods, optionally filtered by county.
{ "county": "Broward" }
Covers 29+ neighborhoods across Miami-Dade, Broward, and Palm Beach counties.
get_latest_draft_classReturns the most recent Draft Class โ the newest businesses to join Hometeam. No parameters needed.
Hometeam drafts new businesses monthly through community events. This tool lets AI assistants answer "what's new?" questions with real, timely data.
User asks AI: "Find me a Black-owned caterer in Broward"
โ
โผ
AI assistant sees Hometeam MCP tools are available
โ
โผ
AI calls search_businesses({ query: "caterer", county: "Broward" })
โ
โผ
Hometeam MCP server queries the live MongoDB database
โ
โผ
Returns real business data: name, location, rating, contact, hours
โ
โผ
AI presents the answer to the user with Hometeam attribution
โ
โผ
User visits the business. Community grows.
The data is always live โ not a cached snapshot. When a business updates their hours or posts a special, the MCP server reflects it immediately.
mcp-server/
โโโ server.js # Entry point (stdio transport โ local/Claude Desktop)
โโโ httpServer.js # HTTP/SSE transport (deployed/remote access)
โโโ config/
โ โโโ db.js # MongoDB connection
โโโ models/ # Mongoose schemas (read-only, shared with backend DB)
โ โโโ Business.js
โ โโโ Category.js
โ โโโ Neighborhood.js
โ โโโ Review.js
โ โโโ Event.js
โ โโโ DraftClass.js
โ โโโ McpUsage.js
โโโ tools/ # MCP tool definitions + handlers
โ โโโ searchBusinesses.js
โ โโโ getBusinessDetails.js
โ โโโ findBySpecialty.js
โ โโโ listCategories.js
โ โโโ listNeighborhoods.js
โ โโโ getLatestDraftClass.js
โโโ middleware/
โ โโโ apiKeyAuth.js # API key validation (paid tier โ coming soon)
โโโ utils/
โ โโโ logUsage.js # Query analytics logger
โโโ scripts/
โ โโโ release.js # Semantic version release script
โโโ .env.example
For Claude Desktop and local development. Communicates via stdin/stdout using JSON-RPC.
npm run start:local
Critical: All logging uses console.error, not console.log. Stdout is reserved for the MCP protocol. Any console.log output corrupts the JSON-RPC stream and crashes the connection.
For production and remote AI agents. Express server with Server-Sent Events.
npm start
# Starts on PORT (default 3001, Heroku assigns dynamically)
Endpoints:
| Method | Path | Description |
|---|---|---|
| GET | / | Service info, version, tool list |
| GET | /health | Health check |
| GET | /sse | SSE connection for MCP clients |
| POST | /messages | MCP JSON-RPC message handler |
Defined in AGENTS.md at the project root (shared with the backend). Key rules:
import/export with .js extensions on all relative importsconsole.error only โ never console.log (breaks stdio transport)export default, read-only versions of backend schemasCreate mcp-server/tools/myNewTool.js with a schema and handler export:
export const myNewToolSchema = {
description: 'What this tool does โ written for an AI to understand when to use it',
inputSchema: {
type: 'object',
properties: {
param1: { type: 'string', description: 'What this parameter means' },
},
required: ['param1'],
},
};
export const myNewToolHandler = async (args) => {
// Query MongoDB, format results
return { success: true, data: { args } };
};
Register it in mcp-server/tools/index.js:
import { myNewToolHandler, myNewToolSchema } from './myNewTool.js';
export const TOOL_DEFINITIONS = [
// existing tools...
{
name: 'my_new_tool',
description: myNewToolSchema.description,
inputSchema: myNewToolSchema.inputSchema,
handler: myNewToolHandler,
},
];
Restart the MCP server and test with Claude Desktop locally before deploying.
Same as the backend โ feature branches, conventional commits:
feat: add business-hours-aware search tool
fix: correct category matching in find_by_specialty
chore: update @modelcontextprotocol/sdk
Version lives in package.json and is served in the MCP server info and HTTP root endpoint.
# Bug fix (1.0.0 โ 1.0.1)
npm run release:patch
# New feature โ e.g., new MCP tool (1.0.0 โ 1.1.0)
npm run release:minor
# Breaking change (1.0.0 โ 2.0.0)
npm run release:major
The script: checks for clean working tree โ bumps package.json โ commits โ creates git tag โ pushes โ Heroku auto-deploys.
The deployed version uses httpServer.js (HTTP/SSE), not server.js (stdio).
heroku login
heroku create hometeam-mcp
heroku config:set NODE_ENV=production
heroku config:set MONGO_URI="your_mongodb_atlas_uri"
heroku config:set MCP_SERVER_NAME="hometeam-directory"
heroku config:set CORS_ORIGIN="*"
git push heroku main
# Verify
curl https://mcp.thehometeam.io/
curl https://mcp.thehometeam.io/health
Do not set PORT โ Heroku assigns it. The Procfile runs node httpServer.js.
curl https://mcp.thehometeam.io/
Response includes all 6 tool names in the tools array.
In Claude Desktop MCP logs, you should see:
tools/list โ search_businesses, get_business_details, find_by_specialty,
list_categories, list_neighborhoods, get_latest_draft_class
Every query is logged (anonymized) to the mcpusages MongoDB collection:
This data powers:
For business owners: Their dashboard shows "AI recommendation served via MCP" in the activity feed, with how often AI agents recommend their business.
For the platform: Aggregated trends reveal demand โ "Caribbean catering queries spiked 300% in Broward this month."
Business owners are never charged. Hometeam is free for all listed businesses.
Join the Pro tier waitlist โ
NODE_ENV=development
PORT=3001
MONGO_URI=mongodb://localhost:27017/hometeam
MCP_SERVER_NAME=hometeam-directory
CORS_ORIGIN=*
The MONGO_URI must point to the same database as the backend. The MCP server reads from it; it does not write business data (only writes usage logs).
| Command | Description |
|---|---|
npm start | HTTP/SSE server (production, deployed) |
npm run start:local | Stdio server (Claude Desktop, local dev) |
npm run dev | HTTP/SSE with auto-reload |
npm run dev:local | Stdio with auto-reload |
npm run release | Show release usage help |
npm run release:patch | Bug fix release |
npm run release:minor | Feature release |
npm run release:major | Breaking change release |
Overtown ยท Liberty City ยท Little Haiti ยท Opa-locka ยท Carol City ยท Richmond Heights ยท Goulds ยท Florida City ยท Coconut Grove West ยท North Miami ยท Miami Gardens
Lauderhill ยท Lauderdale Lakes ยท Fort Lauderdale ยท Plantation ยท Miramar ยท Pembroke Pines ยท Hollywood ยท Deerfield Beach ยท Pompano Beach ยท Dania Beach ยท Tamarac
West Palm Beach ยท Riviera Beach ยท Boynton Beach ยท Delray Beach ยท Belle Glade ยท Lake Worth Beach ยท Palm Beach Gardens
Most local business directories are trapped behind websites. You have to know they exist, visit them, and search manually.
MCP makes Hometeam's data available to every AI assistant that supports the protocol. Instead of one website with one search bar, there are millions of AI assistants โ each one a potential distribution channel for Black-owned businesses.
When someone asks their AI "where should I eat in Lauderhill?", the answer should include Black-owned restaurants. Not because of an algorithm, but because the community verified them and Hometeam made the data available.
| Repo | Description |
|---|---|
| hometeam-backend | Node.js/Express API |
| hometeam-frontend | React/TypeScript directory, dashboards, map |
We welcome contributions. To add a new MCP tool, improve search relevance, or fix a bug: open an issue or submit a PR.
MIT
Every AI recommendation is a customer walking through a Black-owned business's door. That's the point.
Be the first to review this server!
by Modelcontextprotocol ยท Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
by Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
by mcp-marketplace ยท Developer Tools
Scaffold, build, and publish TypeScript MCP servers to npm โ conversationally
by mcp-marketplace ยท Finance
Free stock data and market news for any MCP-compatible AI assistant.