Skip to main content
Glama

MyPos MCP

by Yonsn76

crearTabla

Create a new table in MySQL or PostgreSQL databases by defining the table name and column structure with types and constraints.

Instructions

Sigue estas reglas para crear una tabla: PROPÓSITO: Crear una tabla COMPLETAMENTE NUEVA en la base de datos. REGLA: No uses esta herramienta para modificar o agregar columnas a una tabla que ya existe. La herramienta fallará si la tabla ya existe. USO: Define el nombre de la tabla y la estructura de sus columnas. EJEMPLO: "Crea la tabla productos con columnas id y nombre."

Input Schema

NameRequiredDescriptionDefault
columnasYesLista de columnas con nombre y tipo
nombreTablaYesNombre de la nueva tabla

Input Schema (JSON Schema)

{ "properties": { "columnas": { "description": "Lista de columnas con nombre y tipo", "items": { "additionalProperties": false, "properties": { "nombre": { "description": "Nombre de la columna", "type": "string" }, "tipo": { "description": "Tipo y restricciones de la columna (ej. INT PRIMARY KEY AUTO_INCREMENT)", "type": "string" } }, "required": [ "nombre", "tipo" ], "type": "object" }, "type": "array" }, "nombreTabla": { "description": "Nombre de la nueva tabla", "type": "string" } }, "required": [ "nombreTabla", "columnas" ], "type": "object" }

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/Yonsn76/MyPos-MCP'

If you have feedback or need assistance with the MCP directory API, please join our Discord server