cerebrochain-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CEREBROCHAIN_API_KEY | No | Your CerebroChain API key (required for Tier 2/3 features) | |
| CEREBROCHAIN_API_URL | No | Custom API URL (default: https://cerebrochain.com/api) | https://cerebrochain.com/api |
| CEREBROCHAIN_JWT_TOKEN | No | Alternative auth via JWT token |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| compare_shipping_ratesA | Compare shipping rates across multiple carriers (UPS, FedEx, USPS, DHL) for a package. Returns cheapest and fastest options. Free — no API key needed. |
| get_platform_statusA | Check CerebroChain platform health and service availability. Free — no API key needed. |
| search_inventoryC | Search inventory items with filters. Returns SKU, name, quantity, location, category. Requires API key. |
| check_stock_levelsA | Get current stock levels for a specific inventory item by ID. Returns quantity on hand, reserved, available. Requires API key. |
| lookup_skuA | Look up an inventory item by its SKU code. Returns full item details including stock, location, and pricing. Requires API key. |
| get_warehouse_locationsA | List warehouse storage locations with hierarchy (zones, aisles, bins). Requires API key. |
| list_ordersA | List and search orders with filters. Returns order ID, status, items, total value. Requires API key. |
| get_order_statusB | Get detailed status and tracking for a specific order. Requires API key. |
| get_order_statisticsB | Get order statistics and KPIs — total orders, fulfillment rate, average value, trends. Requires API key. |
| get_fleet_statsA | Get real-time fleet KPIs — active vehicles, utilization, fuel efficiency, maintenance status. Requires API key. |
| list_vehiclesB | List fleet vehicles with status, location, and capacity. Requires API key. |
| track_shipmentA | Get real-time tracking for a shipment route — current location, progress, ETA, stops completed. Requires API key. |
| list_shipmentsA | Get shipment history with analytics — 90-day view of all shipments, delivery rates, carrier performance. Requires API key. |
| optimize_routeB | AI-powered route optimization. Calculates optimal delivery route considering traffic, capacity, time windows, and fuel costs. Premium tool. Requires API key. |
| forecast_demandC | AI-powered demand forecasting. Ask natural language questions about future inventory needs, sales trends, and supply chain patterns. Premium tool. Requires API key. |
| detect_bottlenecksB | AI-powered bottleneck detection. Identifies current and predicted supply chain bottlenecks with severity and recommendations. Premium tool. Requires API key. |
| get_optimization_recommendationsA | Get AI-generated optimization recommendations for warehouse operations, logistics routes, or overall supply chain efficiency. Premium tool. Requires API key. |
| get_financial_metricsA | Get real-time financial metrics — revenue, margins, cash flow, profit/loss. Premium tool. Requires API key. |
| get_kpi_dashboardA | Get KPI performance dashboard — targets vs actuals for all key supply chain metrics. Premium tool. Requires API key. |
| natural_language_commandB | Process a natural language command through CerebroChain AI Command Center. Supports queries like "show me all delayed shipments" or "reserve 50 units of SKU-1234". Premium tool. Requires API key. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| inventory-summary | |
| fleet-status | |
| kpi-snapshot |
TDQS
Scored across 20 tools
Most tools have distinct purposes (e.g., check_stock_levels vs lookup_sku vs search_inventory target different access patterns), but the natural_language_command tool significantly overlaps with list_orders, list_shipments, search_inventory, and others, creating ambiguity about when to use specific structured tools versus the flexible NL interface.
Excellent consistency throughout. All tools use snake_case with clear verb_noun patterns (get_, list_, check_, search_, optimize_, compare_). Verb usage is predictable: 'get' for specific items, 'list' for collections, 'search' for filtered queries.
Twenty tools is slightly above the ideal range but reasonable given the domain complexity spanning inventory, orders, shipments, fleet, warehouse, and AI analytics. Each tool serves a distinct supply chain function without obvious redundancy.
Strong coverage across the supply chain lifecycle: inventory management, order tracking, shipment logistics, fleet optimization, and financial metrics. Minor gaps in explicit write/update operations (create_order, update_inventory), though natural_language_command appears to handle some mutations.