Skip to main content
Glama
getsimba-ai

Simba MCP Server

Official
by getsimba-ai

get_upload

Retrieve an uploaded dataset's details, including column schema, row count, and file metadata. Use this data to configure model inputs without re-reading the CSV.

Instructions

Get one uploaded dataset's details, including its column schema.

Returns id, filename, original_filename, source_type, mime_type, file_size, row_count, column_count, columns ([{name, dtype}, ...] — use these to build create_model's channel/control column arguments without re-reading the CSV), and created_at.

Args: file_id: The upload's id, from upload_data's response or list_uploads.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
file_idYes
Behavior4/5

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

With no annotations, the description carries the behavioral disclosure burden. It fully discloses the return payload, including the exact structure of columns and their intended downstream use for create_model, which is valuable behavioral context. It doesn't cover error cases or permissions, but for a simple retrieval tool the return contract is the most important behavior.

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

Conciseness5/5

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

The description is well-structured and efficient: a one-sentence purpose statement, a compact return field list, and a short Args section. Every sentence adds value, and the most important information is front-loaded.

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

Completeness4/5

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

For a single-parameter getter with no output schema, the description is largely complete: it lists all returned fields and gives the one required input with provenance. It could be more explicit about read-only behavior or error conditions, but those are minor gaps given the simplicity of the tool.

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

Parameters5/5

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

The schema only defines file_id as an integer with no description, so the description fully compensates. It explains that file_id is the upload's id and explicitly tells the agent where to obtain it (upload_data response or list_uploads), which is exactly the semantic meaning needed to call the tool correctly.

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?

The description clearly states the verb 'Get', the resource 'one uploaded dataset's details', and highlights the column schema. This makes the tool's purpose immediately obvious and sufficiently distinguishes it from list_uploads (listing) and upload_data (creation), even though it doesn't explicitly name get_data_schema as an alternative.

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

Usage Guidelines3/5

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

It gives useful context by telling the agent that file_id comes from upload_data's response or list_uploads, and explains how the returned columns can be used to build create_model arguments. However, it does not explicitly state when to choose this tool over siblings like get_data_schema or list_uploads, leaving the comparison to inference.

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/getsimba-ai/simba-mcp'

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