Skip to main content
Glama
rossumai

Rossum MCP Server

Official
by rossumai

rossum_get_schema

Retrieve a specific schema by its ID from the Rossum platform for analysis and integration purposes.

Instructions

Get a specific schema by its ID.

Args: schema_id: The ID of the schema to retrieve

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
schema_idYes

Implementation Reference

  • The main handler function for the 'rossum_get_schema' tool. It is registered using the @mcp.tool() decorator and delegates to the _get_schema_impl helper. Includes input schema via type hint (schema_id: str) and docstring.
    @mcp.tool()
    async def rossum_get_schema(schema_id: str) -> Dict[str, Any]:
        """Get a specific schema by its ID.
        
        Args:
            schema_id: The ID of the schema to retrieve
        """
        return await _get_schema_impl(schema_id=schema_id)
  • Helper function that performs the actual API request to retrieve the schema from the Rossum API using the generic _rossum_request function.
    async def _get_schema_impl(schema_id: str):
        """Get a specific schema by ID"""
        return await _rossum_request("GET", f"/schemas/{schema_id}")

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/rossumai/rossum-mcp-server'

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