Skip to main content
Glama
VautlixDevelopment

Vaultix MCP Server

vaultix_create_product

Add new products to your catalog by specifying name, price in cents, description, stock quantity, and SKU code.

Instructions

Create a new product in the catalog. Price is in cents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesProduct name
priceYesPrice in cents
descriptionNoProduct description
stock_quantityNoStock quantity
skuNoSKU code

Implementation Reference

  • The handler implementation for 'vaultix_create_product' tool, which creates a new product by posting the arguments to the '/products' API endpoint using the VaultixClient.
    case 'vaultix_create_product':
      return client.post('/products', {
        name: args.name,
        price: args.price,
        description: args.description,
        stock_quantity: args.stock_quantity,
        sku: args.sku,
      })
  • The input schema defining the parameters for the 'vaultix_create_product' tool, including required fields name and price.
    inputSchema: {
      type: 'object',
      properties: {
        name: { type: 'string', description: 'Product name' },
        price: { type: 'number', description: 'Price in cents' },
        description: { type: 'string', description: 'Product description' },
        stock_quantity: { type: 'number', description: 'Stock quantity' },
        sku: { type: 'string', description: 'SKU code' },
      },
      required: ['name', 'price'],
    },
  • The tool registration object added to the exported 'tools' array, defining name, description, and input schema for MCP.
    name: 'vaultix_create_product',
    description: 'Create a new product in the catalog. Price is in cents.',
    inputSchema: {
      type: 'object',
      properties: {
        name: { type: 'string', description: 'Product name' },
        price: { type: 'number', description: 'Price in cents' },
        description: { type: 'string', description: 'Product description' },
        stock_quantity: { type: 'number', description: 'Stock quantity' },
        sku: { type: 'string', description: 'SKU code' },
      },
      required: ['name', 'price'],
    },
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool creates a product, implying a write operation, but doesn't mention permission requirements, whether the operation is idempotent, error conditions, or what happens on success. The price unit clarification is helpful but insufficient for a mutation tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with just two sentences, both of which are relevant and front-loaded. The first sentence states the core purpose, and the second provides crucial unit clarification. There's no wasted verbiage, though it could benefit from slightly more context.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a mutation tool with no annotations and no output schema, the description is insufficient. It doesn't explain what happens after creation (e.g., returns a product ID), error handling, or system behavior. The price unit clarification is helpful but doesn't compensate for the missing behavioral context needed for safe tool invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all 5 parameters thoroughly. The description adds value by clarifying that 'price is in cents', which provides important semantic context beyond the schema's 'Price in cents' description. This earns a baseline score of 3 with some added value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Create a new product') and the resource ('in the catalog'), which is specific and unambiguous. However, it doesn't explicitly differentiate this tool from its sibling 'vaultix_update_product', which would require mentioning that this is for initial creation rather than modification.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'vaultix_update_product' or 'vaultix_get_product'. There's no mention of prerequisites, typical use cases, or when not to use it, leaving the agent with insufficient context for decision-making.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

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/VautlixDevelopment/mcpVaultix'

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