MCP Hub
Back to servers

mcp-scim

A robust MCP server that bridges SCIM 2.0 APIs, enabling model-driven identity management and resource provisioning including users and groups.

Stars
1
Tools
10
Updated
Oct 30, 2025
Validated
Mar 8, 2026

SCIM MCP Server

A Model Context Protocol (MCP) server that bridges SCIM 2.0 APIs, allowing MCP clients to interact with SCIM resources through standardized tools.

[!TIP] 🚀 SCIM Playground: Test this SCIM MCP server live in the SCIM Playground before integrating it with your own SCIM server.

SCIM Playground Badge

Usage

Stdio Transport

Add this configuration to your MCP client's configuration file:

{
  "mcpServers": {
    "scim": {
      "command": "npx",
      "args": ["github:limosa-io/mcp-scim", "--stdio"],
      "env": {
        "SCIM_URL": "https://your-scim-server.com",
        "SCIM_AUTH_TOKEN": "your-bearer-token"
      }
    }
  }
}

HTTP Transport

For HTTP-based MCP clients, add this configuration:

{
  "mcpServers": {
    "scim": {
      "url": "http://localhost:3000/mcp",
      "headers": {
        "Authorization": "Bearer your-token"
      },
      "type": "http"
    }
  }
}

Note: Make sure to start the HTTP server first using npx github:limosa-io/mcp-scim (without --stdio flag). Please set the environment variable SCIM_URL and optionally PORT.

Available Tools

ToolDescription
resourcetypesList available SCIM resource types
schemasGet SCIM schemas and attribute definitions
serviceProviderConfigGet server capabilities and configuration
getResourcesQuery resources with filtering and pagination
getResourceByIdRetrieve a specific resource by ID
createResourceCreate a new SCIM resource
updateResourceUpdate an existing resource (PUT)
patchResourceModify a resource with specific operations (PATCH)
deleteResourceDelete a resource
batchOperationsPerform multiple operations in a single request

Development

Local Development Setup

git clone git@github.com:limosa-io/mcp-scim.git
cd mcp-scim
npm install

Development Commands

npm run dev:watch  # Auto-reload on file changes
npm run dev        # Run once in development mode
npm run build      # Compile TypeScript to JavaScript
npm start          # Run the compiled version

Reviews

No reviews yet

Sign in to write a review