Three tools are exposed. All are read-only against publicly available, verified operator data.
Search verified food truck operators in Southwest Florida. Filter by cuisine type, city, or keyword. Returns truck profiles with name, cuisine, city, bio, flags (fundraiser-friendly, veteran-owned), and booking URL.
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_trucks",
"arguments": {
"city": "Cape Coral",
"cuisine": "BBQ"
}
}
}Get full details on a specific verified truck by its profile ID. Use after search_trucks to fetch complete information on a result.
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "get_truck",
"arguments": {
"id": "<truck-uuid>"
}
}
}Browse active listings on any of the seven ServiceWindow marketplace boards.
"request" · "event" · "shift" · "venue" · "parking" · "vendor" · "jobs"
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "list_marketplace",
"arguments": {
"board": "request",
"city": "Fort Myers"
}
}
}No API key required. Send a POST request with a JSON-RPC 2.0 body.
# Verify the server is live
curl -X POST https://krmfxedkxoyzkeqnijcd.supabase.co/functions/v1/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{}}'curl -X POST https://krmfxedkxoyzkeqnijcd.supabase.co/functions/v1/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}'curl -X POST https://krmfxedkxoyzkeqnijcd.supabase.co/functions/v1/mcp \
-H "Content-Type: application/json" \
-d '{
"jsonrpc":"2.0","id":3,
"method":"tools/call",
"params":{
"name":"search_trucks",
"arguments":{"city":"Naples","limit":5}
}
}'Add ServiceWindow to any MCP-compatible AI client.
"servicewindow": {
"url": "https://krmfxedkxoyzkeqnijcd
.supabase.co/functions/v1/mcp"
}
URL: https://krmfxedkxoyzkeqnijcd
.supabase.co/functions/v1/mcp
Auth: none required
All data is scoped to Southwest Florida — verified operators only.