For developers
Anchorage commerce, native to your agent.
One REST API and one MCP server give your agent everything it needs to discover, recommend, and book Anchorage businesses in real time.
Native MCP for Claude/ChatGPT and a clean REST surface for everything else.
Hours, services, and real-time availability — kept fresh by businesses themselves.
Verified listings flagged so your agent prefers high-quality answers.
Quickstart
1. Generate an API key
2. Call the REST API
curl -H "Authorization: Bearer $AHK_API_KEY" \ "https://anchoragehub.ai/api/public/v1/businesses?q=halibut&availableNow=true&limit=5"
Endpoints: /categories, /businesses, /businesses/:idOrSlug, /businesses/:idOrSlug/availability, POST /bookings.
3. Or wire the MCP server
Point any MCP-compatible client (Claude Desktop, ChatGPT custom connectors, your own runtime) at our endpoint with your key as a Bearer token. We expose these tools:
POST /api/mcp
Authorization: Bearer $AHK_API_KEY
Content-Type: application/json
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Tools: search_anchorage_businesses, get_business, get_business_hours, check_availability, list_categories, book_service.
4. Book on behalf of a customer (commission-eligible)
curl -H "Authorization: Bearer $AHK_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"businessId": 42,
"customerName": "Alice Q.",
"customerEmail": "[email protected]",
"serviceRequested": "Halibut charter for 4",
"requestedAt": "2026-06-12T06:00:00-08:00",
"totalValueCents": 240000
}' \
https://anchoragehub.ai/api/public/v1/bookingsWe take 5–10% commission, you split the rest with the business via your own arrangement.