Skip to main content
Glama
rossumai

Rossum MCP Server

Official
by rossumai

rossum_get_queues

Retrieve all document processing queues from your Rossum organization to analyze workflow status and structure.

Instructions

Get all queues from the Rossum organization.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the 'rossum_get_queues' tool. It is registered via the @mcp.tool() decorator and delegates the core logic to _get_queues_impl().
    @mcp.tool() async def rossum_get_queues() -> List[Dict[str, Any]]: """Get all queues from the Rossum organization.""" return await _get_queues_impl()
  • Helper function that fetches all queues from the Rossum API using _rossum_unpaginated_request, selecting essential fields like id, name, url, schema, workspace, and status.
    async def _get_queues_impl() -> List[Dict[str, Any]]: """Get all queues with essential fields only, handling pagination.""" summary_keys = [ "id", "name", "url", "schema", "workspace", "status", ] return await _rossum_unpaginated_request("GET", "/queues", summary_keys=summary_keys)

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