Skip to main content
Glama
rawtreedb

RawTree MCP Server

Official
by rawtreedb

Create Table

create-table
Idempotent

Create an empty RawTree table in a database, optionally using a customer-owned S3 bucket for data and backups. Returns the resolved storage destination.

Instructions

Purpose: Create an empty RawTree table in a database, optionally using a customer-owned S3 bucket configured for the cluster.

Returns: The database and table names plus the resolved storage destination. S3 responses include the full bucket, object path, and endpoint.

Behavior: Omit s3Storage to inherit database-level storage when configured, then the cluster's default storage. To use an explicit per-table customer-owned S3 configuration, provide the complete s3Storage object with data and backup buckets, optional paths, roleArn, and externalId. Paths default to the bucket root when omitted.

Credentials: The API does not return S3 credentials in cluster metadata. Confirm the exact buckets, paths, role ARN, and External ID before using an explicit s3Storage override.

Auth: Requires organization admin access. Authorization is enforced by the RawTree API.

Reliability: If the response is ambiguous, call list-tables to reconcile by database and table name before retrying.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesName of the table to create.
clusterNoRawTree cluster to use for this operation.
databaseNoOptional RawTree database override. RawTree uses the default database when omitted.
s3StorageNoOptional per-table S3 override. Omit to inherit the database or cluster's default storage.
organizationNoRawTree organization containing the target cluster.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv0.3.2

TDQS

A4.6/5.0
Behavior5/5

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

Adds substantial context beyond the annotations: the storage inheritance order, the fact that the API does not return S3 credentials in cluster metadata, the required organization-admin authorization, and a reconciliation path via list-tables before retrying. These are non-obvious traits annotations cannot express.

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?

Bold section headers front-load purpose and behavior, and each section earns its place. The Credentials and Auth blocks are slightly verbose relative to the single required parameter, so it falls short of a 5.

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

Completeness5/5

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

For a mutation tool with a nested S3 object and no output schema, the description covers return contents, auth, credential caveats, inheritance behavior, and failure recovery. Nothing an agent needs to call it correctly is missing.

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

Parameters4/5

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

With 100% schema coverage the baseline is 3, but the description adds real meaning: the omission-inheritance semantics of s3Storage, that paths default to the bucket root, and that externalId must exactly match the value configured in AWS. This goes past what the schema documents.

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

Purpose5/5

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

States a specific verb and resource ('Create an empty RawTree table in a database') plus the optional S3 storage variant, which cleanly separates it from create-database and create-cluster siblings. An agent can tell what it produces (an empty table) without opening the schema.

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

Usage Guidelines4/5

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

Gives clear conditional guidance: omit s3Storage to inherit database then cluster default storage, or supply a complete s3Storage object for an explicit override, and names list-tables as the tool to reconcile an ambiguous response. It lacks an explicit statement of when NOT to use it versus create-database/create-cluster, keeping it below a 5.

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