Raster

Agent frameworks

Use the Raster MCP server from your own agent code — OpenAI Responses, the Agents SDK, LangChain, and the Vercel AI SDK.

Building your own agent? Point it at the Raster MCP server and its tools — list, search, upload, tag, transfer, delete — become available in code.

These run non-interactively, so they authenticate with an organization API key as a Bearer token. Create one and read the full auth model in Authentication.

DetailValue
URLhttps://mcp.raster.app/
TransportStreamable HTTP
AuthAuthorization: Bearer <API_KEY>

The Responses API runs the server as a hosted tool. Full options: OpenAI — remote MCP.

from openai import OpenAI

client = OpenAI()
response = client.responses.create(
    model="gpt-5",
    tools=[
        {
            "type": "mcp",
            "server_label": "raster",
            "server_url": "https://mcp.raster.app/",
            "headers": {"Authorization": "Bearer YOUR_RASTER_API_KEY"},
        }
    ],
    input="List my Raster libraries.",
)