Mini-ERP MCP
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| HF_MODEL | No | Model identifier for Hugging Face inference | openai/gpt-oss-120b |
| HF_TOKEN | Yes | Your Hugging Face token | |
| ANTHROPIC_API_KEY | No | API key for Anthropic (optional, to test with Anthropic instead of Hugging Face) |
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": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| consultar_stockA | Consulta el stock disponible de un producto específico por su ID. Usar esta herramienta cuando el cliente pregunte por disponibilidad de un producto puntual. |
| registrar_ventaA | Registra una venta: descuenta stock y crea el registro de la operación. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| resumen_ventas | Genera el texto de instrucción para pedir un resumen de ventas recientes. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| catalogo_productos | Catálogo completo de productos disponibles, con precio y stock. |
TDQS
Scored across 2 tools
The two tools are unambiguously distinct: consultar_stock is a read-only stock lookup and registrar_venta is a state-changing sale registration. Descriptions explicitly frame the boundary (read vs. real-effect write), so an agent cannot confuse them.
Both names follow the same Spanish verb_noun pattern (consultar_stock, registrar_venta) with consistent snake_case and imperative verbs. There is no mixed convention.
Two tools is far too thin for a server scoped as a 'Mini-ERP' handling inventory and sales; even a minimal ERP needs product listing, restock/adjustment, and sales history. The surface only covers a single narrow checkout flow.
Only a read-stock plus create-sale pair exists, with no product catalog/listing, no inventory update or restock, no sale retrieval or cancellation, and no reporting. Agents will hit dead ends for any operation beyond checking one product and recording one sale.