Skip to content

Model Context Protocol (MCP)

Pro featureSCIM MCP requires a Pro API key. The first 3 days are free.Start Pro free

Model Context Protocol (MCP) provides a standardized way for AI models to connect with external data sources and tools. SCIM Playground includes a dedicated SCIM MCP server that enables natural language management of users and groups.

SCIM MCP is a Pro feature. Pro access includes SCIM MCP transports, advanced SCIM endpoints, request logs, and manager tools.

You can use any MCP-compatible client such as Claude, GitHub Copilot, Microsoft Copilot for Microsoft 365, or Cursor to interact with your SCIM environment through simple conversational prompts.

Authentication is required to access the MCP endpoints. Please include your API Key as a Bearer token in the Authorization header for all requests.

Streamable HTTP

https://mcp.scim.dev/mcp

You can provide the API Key in the url.

https://mcp.scim.dev/mcp/API_KEY

HTTP+SSE transport

https://mcp.scim.dev/sse

Example configuration

json
"scim-mcp": {
    "url": "https://mcp.scim.dev/mcp",
    "headers": {
        "Authorization": "Bearer ..."
    }
}

Open Source SCIM MCP Server

The MCP Server developed for SCIM Playground is open source and available on GitHub. It can be used with any SCIM server. The server supports HTTP, HTTP+SSE, and stdio transports.

Example configuration:

json
"scim": {
    "command": "npx",
    "args": [
        "github:limosa-io/mcp-scim",
        "--stdio"
    ],
    "env": {
        "SCIM_URL": "https://api.scim.dev/scim/v2",
        "SCIM_AUTH_TOKEN": "...your-bearer-token..."
    }
}