scim2-server
Lightweight SCIM2 server prototype
What it is and what it does
scim2-server is a SCIM2 (System for Cross-domain Identity Management) protocol server implementation designed as a prototype and reference implementation. It exposes standard SCIM2 endpoints for user and resource provisioning, supporting discovery endpoints, full CRUD operations, filtering, searching, sorting, ETags, and HTTP PATCH. The server runs as a WSGI application using werkzeug and stores all resources in memory, making it suitable for testing, prototyping, and integration scenarios rather than production deployments.
The package is built on three runtime dependencies: scim2-models for SCIM data structures, scim2-filter-parser for query filtering, and werkzeug for the HTTP layer. It has been tested against live Microsoft Entra and Okta systems. The documentation notes that for production use, you would typically replace the in-memory backend with a persistent data store, add proper OAuth authorization, and deploy behind a production WSGI server rather than werkzeug's development server.
Use it for:
- Testing SCIM2 client integrations against a compliant server without setting up a full identity provider
- Prototyping user provisioning workflows for identity management systems
- Learning SCIM2 protocol implementation and RFC 7643/7644 compliance
- Validating SCIM2 requests and responses in development environments
- Building a custom provisioning backend by subclassing the provided Backend class
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides a lightweight SCIM2 server implementation that handles user provisioning operations including resource discovery, CRUD operations, filtering, searching, and ETags, built on werkzeug with in-memory storage.
Yes, if you need a working SCIM2 server for testing, prototyping, or learning. The active maintenance, low install friction, permissive Apache 2.0 license, and zero known vulnerabilities make it safe to use. However, do not use the in-memory backend in production—it is explicitly designed as a reference implementation. For production deployments, you must implement a persistent backend and add proper authentication and authorization.
Install
scim2-server on PyPI
pip
pip install scim2-serveruv
uv add scim2-serverpoetry
poetry add scim2-serverInstalling scim2-server
Before you install
Low install friction with a pure-Python wheel distribution. Maintenance status is active with recent releases. Requires Python 3.10 or later.
License in practice
Licensed under Apache License 2.0, a permissive license allowing commercial use, modification, and distribution with minimal restrictions—suitable for both open-source and proprietary projects.
Quickstart
pip install scim2-server
scim2-server --port 8080 --bearer-token my-token
# Server listens on http://127.0.0.1:8080 with SCIM2 endpoints
Requires Python 3.10 or later; stores all resources in memory and loses them on process exit unless --dump-resources is used.
Verify before relying
- Performance characteristics under load or with large resource sets
- Whether the in-memory backend is suitable for your scale requirements
- Production deployment guidance beyond the notes in the description
Package facts
| License | Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for… (full text in the JSON record) (permissive) |
| Python support | supports the current Python release (>=3.10) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 3 — scim2-filter-parser, scim2-models, werkzeug |
| Maintenance | actively maintained — 140 days since the last release |
| First released | |
| Downloads | 113,861/month — #12,325 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: scim2_server-0.1.9-py3-none-any.whl
Keywords: scim, scim2, provisioning, rfc7643, rfc7644
Tags
More Dynamic Content packages
MarkupSafe provides a text object that escapes…
permissive · top 100 on PyPI
Jinja2Jinja2 is a templating engine that renders…
permissive · top 100 on PyPI
soupsieveSoupsieve is a CSS selector library designed to…
permissive · top 100 on PyPI
WerkzeugWerkzeug is a WSGI utility library providing…
permissive · top 1,000 on PyPI
FlaskFlask is a lightweight WSGI web application…
permissive · top 1,000 on PyPI
MakoMako compiles Python-embedded templates into…
permissive · top 1,000 on PyPI
django-scim2Implements the SCIM 2.0 provider specification…
permissive · top 5,000 on PyPI
scim2-filter-parserParses SCIM 2.0 filter query strings into…
permissive · top 5,000 on PyPI
scim2-modelsProvides Pydantic models for SCIM2 (System for…
permissive · top 15,000 on PyPI
pydantic-scimProvides Pydantic data models for SCIM (System…
unclear · top 15,000 on PyPI
WSGIProxy2WSGIProxy2 wraps a remote HTTP application as a…
permissive · top 15,000 on PyPI
wsgidavWsgiDAV is a WebDAV server implementation in…
permissive · top 15,000 on PyPI
httplib2httplib2 is an HTTP client library that handles…
permissive · top 1,000 on PyPI
pecanPecan is a WSGI web framework that routes HTTP…
permissive · top 15,000 on PyPI