bearing-local-business
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., "@bearing-local-businessWhat are your hours and what's on the menu?"
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.
bearing-local-business
bearing-local-business is a Bearing reference stdio MCP server for a fictional bakery, Cypress & Crumb. It makes a local business agent-queryable so a customer's AI agent can check hours, inspect the menu, ask about custom-order timing, and initiate a demo inquiry.
All data is fictional demo data. The server makes no network calls, persists nothing, and is intended as a reference for the agentic economy: a local business exposing a clean, typed MCP surface for discovery and transaction initiation.
Tools
get_business_profile
Input: none
Output: bakery name, tagline, weekly hours, address, phone, pickup details, delivery details, and custom-order lead time
get_menu
Input:
{ category?: string }Output: the full menu grouped by category, or the filtered category if provided
check_custom_order_availability
Input:
{ date: string, orderType?: string }Output: whether the requested date is far enough out for a custom order, the integer days out, and the earliest available date
submit_order_inquiry
Input:
{ name: string, contact: string, details: string, date?: string }Output: a demo inquiry reference plus the captured request details
Related MCP server: agent-storefront
Run
Development:
bun run devBuild and run the compiled server:
bun run build
bun run startThe server reads src/data/demo-bakery.json at runtime with readFileSync and import.meta.url path resolution. The loader checks both the source-layout path used by bun run src/index.ts and the built-layout path used by node dist/index.js, so the JSON file does not need to be copied into dist/.
MCP Client Config
Example Claude Desktop or compatible stdio client config:
{
"mcpServers": {
"bearing-local-business": {
"command": "node",
"args": [
"/absolute/path/to/bearing-mcp/dist/index.js"
]
}
}
}For local development, you can also point a client at Bun:
{
"mcpServers": {
"bearing-local-business": {
"command": "bun",
"args": [
"run",
"/absolute/path/to/bearing-mcp/src/index.ts"
]
}
}
}Point It At A Real Business
To adapt this for a real business, replace the fictional demo-bakery.json source with a consented, authenticated system of record such as a POS, ordering backend, or inventory service. In a real deployment:
keep the MCP tool contracts stable
add authentication and authorization
persist inquiries into the business's system
fetch live hours, menu, and availability from an approved source
This demo intentionally does none of that. It persists nothing and only echoes a simulated inquiry capture.
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 Servers
- Flicense-qualityDmaintenanceMCP server for managing bakery recipe technical sheets with Postgres. Enables AI agents to search, create, update, approve, and compare recipe versions through secure tools.Last updated
- Flicense-qualityCmaintenanceEnables any AI agent to discover, query, and order from a restaurant's storefront via MCP tools. It handles menu lookup, modifier validation, and enforces a mandatory confirmation gate before payment, replacing the human-operated phone line.Last updated
- Alicense-qualityDmaintenanceEnables AI-powered customer support with real-time access to CRM, ticketing, and communication tools via MCP, supporting context-aware conversations and automated actions.Last updatedApache 2.0
- Flicense-qualityDmaintenanceMCP server that exposes tools to query DulceGestion business data (orders, stock, customers) and retrieve documentation via RAG, enabling Claude to assist with pastry shop management.Last updated
Related MCP Connectors
Phone, SMS & email for AI agents — one remote MCP endpoint, OAuth login, zero install.
OCR, transcription, file extraction, and image generation for AI agents via MCP.
Connect any AI agent to 11+ social platforms: schedule, publish & track posts via hosted MCP.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nickoc/bearing-local-business-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server