Dossin MCP Server
OfficialServer Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| BACKEND_URL | No | The URL of the Dossin backend API | http://localhost:3000/api |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_database_schemaC | DOSSIN - Sistema de Gestión de Cargas Agrícolas Sistema integral para el sector agropecuario que administra:
Base de datos MySQL con operaciones del sistema. GENERACIÓN DE COMPONENTES REACT - REGLAS OBLIGATORIAS: ⚠️ SIEMPRE genera componentes React para consultas/visualizaciones de datos. 1. PRINCIPIO ATÓMICO:
2. DOS TIPOS DE COMPONENTES - ARTEFACTO vs COMPONENTE DOSSIN: 📱 ARTEFACTO DE CLAUDE (Para mostrar en el chat):
🔧 COMPONENTE DOSSIN (Para compile_and_save_component):
3. CÓDIGO COMPLETO Y FUNCIONAL:
4. LIBRERÍAS SIN RESTRICCIONES:
RECORDATORIOS CRÍTICOS:
Obtiene el schema completo de la base de datos MySQL incluyendo tablas, columnas, tipos de datos, relaciones (foreign keys), índices y constraints. CUÁNDO USAR:
RETORNA: JSON con estructura completa de la base de datos. |
| execute_queryA | Ejecuta consultas SQL SELECT en la base de datos de Dossin. DATOS DISPONIBLES:
MEJORES PRÁCTICAS: ✅ Usa parámetros (?) para valores dinámicos ✅ Obtén el schema primero si no conoces la estructura ✅ Limita resultados con LIMIT cuando sea apropiado ✅ Usa CURDATE() para fecha actual ⛔ Solo consultas SELECT permitidas EJEMPLO: query: "SELECT * FROM turnos WHERE fecha >= CURDATE() LIMIT 10" params: [] |
| compile_and_save_componentA | Envía un COMPONENTE DOSSIN al backend para compilación remota a HTML standalone. 🔐 AUTENTICACIÓN OBLIGATORIA: ⚠️ ANTES de llamar a esta tool, DEBES preguntar al usuario por su token de autenticación. ❗ El token es REQUERIDO para la compilación en el backend. FLUJO OBLIGATORIO:
⚠️ CRÍTICO - DIFERENCIA ENTRE ARTEFACTO Y COMPONENTE DOSSIN: 📱 ARTEFACTO DE CLAUDE (NO compilar):
🔧 COMPONENTE DOSSIN (SÍ compilar):
TRANSFORMACIÓN REQUERIDA (Artefacto → Componente Dossin):
COMPILACIÓN EN BACKEND:
RESULTADO:
CUÁNDO USAR:
|
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: schema retrieval, SQL query execution, and component compilation/saving. The verbose instructions don't blur the boundaries between these operations.
All tool names use snake_case with a verb-first structure (get_, execute_, compile_and_save_). The compound verb in compile_and_save_component is a minor deviation but the pattern remains predictable.
Three tools is on the low end for a server handling database access and component generation, but it covers the core read-and-compile workflow. It feels slightly thin given the number of domain entities mentioned.
The schema, query, and compile tools form a coherent pipeline for generating data-driven components. Minor gaps exist (e.g., no list/manage compiled components, no explicit auth tool), but the primary purpose is well covered.