crear-empresa
Create a new company with essential details using this tool. Input name, email, phone, address, website, industry, and size to register a business quickly via the MCP API Server.
Instructions
Crea una nueva empresa con todos los datos requeridos
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | ||
Yes | |||
industry | Yes | ||
name | Yes | ||
phone | Yes | ||
size | Yes | ||
website | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"minLength": 1,
"type": "string"
},
"email": {
"format": "email",
"type": "string"
},
"industry": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"phone": {
"minLength": 1,
"type": "string"
},
"size": {
"enum": [
"small",
"medium",
"large"
],
"type": "string"
},
"website": {
"format": "uri",
"type": "string"
}
},
"required": [
"name",
"email",
"phone",
"address",
"website",
"industry",
"size"
],
"type": "object"
}