{"id":45792302,"url":"https://github.com/python-scim/scim2-server","last_synced_at":"2026-02-26T12:09:51.402Z","repository":{"id":253790395,"uuid":"844512592","full_name":"python-scim/scim2-server","owner":"python-scim","description":"Lightweight SCIM2 server prototype","archived":false,"fork":false,"pushed_at":"2026-01-25T15:24:37.000Z","size":681,"stargazers_count":11,"open_issues_count":5,"forks_count":4,"subscribers_count":8,"default_branch":"main","last_synced_at":"2026-01-26T06:40:22.477Z","etag":null,"topics":["provisioning","rfc7643","rfc7644","scim","scim2"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/python-scim.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":["yaal-coop"]}},"created_at":"2024-08-19T12:15:37.000Z","updated_at":"2026-01-25T15:24:37.000Z","dependencies_parsed_at":"2024-08-29T13:04:46.658Z","dependency_job_id":"7316b2dc-ee66-4b3b-8d07-f83bf245ad14","html_url":"https://github.com/python-scim/scim2-server","commit_stats":null,"previous_names":["yaal-coop/scim2-server","python-scim/scim2-server"],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/python-scim/scim2-server","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-scim%2Fscim2-server","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-scim%2Fscim2-server/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-scim%2Fscim2-server/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-scim%2Fscim2-server/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/python-scim","download_url":"https://codeload.github.com/python-scim/scim2-server/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/python-scim%2Fscim2-server/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29858490,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-26T08:51:08.701Z","status":"ssl_error","status_checked_at":"2026-02-26T08:50:19.607Z","response_time":89,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["provisioning","rfc7643","rfc7644","scim","scim2"],"created_at":"2026-02-26T12:09:48.830Z","updated_at":"2026-02-26T12:09:51.394Z","avatar_url":"https://github.com/python-scim.png","language":"Python","readme":"# scim2-server\n\nThis is an example WSGI-SCIM server using [scim2-models](https://github.com/python-scim/scim2-models).\nIt utilizes [werkzeug](https://werkzeug.palletsprojects.com/) and [scim2-filter-parser](https://github.com/15five/scim2-filter-parser) and keeps all resources in-memory,\nthey are lost once the process exits.\n\n## Features\n\n- [x] Discovery endpoints (`/v2/ServiceProviderConfig`, `/v2/ResourceTypes`, `/v2/Schemas`)\n- [x] Create/Read/Update/Delete resources (`POST`, `GET`, `PUT`, `DELETE`)\n- [x] Searching \u0026 Filtering\n- [x] Support for ETags\n- [x] Unique Constraints\n- [x] HTTP PATCH (Add/Remove/Replace)\n- [x] Sorting\n\nThe only optional feature currently missing is support for Bulk operations ([RFC 7644, Section 3.7](https://datatracker.ietf.org/doc/html/rfc7644#section-3.7)).\n\n## Usage\n\n```shell\n$ scim2-server [-h] [--schema SCHEMA] [--resource-type RESOURCE_TYPE] [--bearer-token BEARER_TOKEN] [--hostname HOSTNAME] [--port PORT] [--reverse-proxy] [--dump-resources DUMP_RESOURCES]\n```\n\n- `-h`/`--help`: Show help message\n- `--reverse-proxy`: Allow using the provider behind a Reverse Proxy (required for URL rewriting).\n- `--schema`: Register schemas from specified JSON file. If not provided, loads the default schemas from RFC 7643.\n- `--resource-type`: Register resource types from specified JSON file. If not provided, loads the default resource types from RFC 7643.\n- `--bearer-token`: Registers a bearer token that can be used for accessing the service. If no tokens are provided, anonymous access without authentication is allowed.\n- `--hostname`: The hostname to listen on. Defaults to `127.0.0.1`.\n- `--port`: The port to listen on. Defaults to `8080`.\n- `--dump-resources`: Dump a JSON document containing all resources when the provider exits normally.\n\n## Notes\n\nThis provider can be used as a starting point if you want to implement a SCIM provider. You should probably change the following things, if you want to use it in production:\n\n- Use a proper production WSGI server instead of the one provided by Werkzeug\n- Implement your own Backend as a subclass of `scim2_server.backend.Backend`\n- Implement proper authorization with OAuth instead of public access or static bearer tokens\n- Support the `/Me` endpoint, if it applies in your use case\n- Add support for using either a static URL prefix or improve the support for usage behind a reverse proxy\n\nThe provider in its current state has been tested successfully against a live\n[Microsoft Entra](https://learn.microsoft.com/en-us/entra/identity/app-provisioning/scim-validator-tutorial)\nsystem as well as a live\n[Okta](https://developer.okta.com/docs/guides/scim-provisioning-integration-test/main/) system.\n\n## Origins\n\nParts of this software were initially developed at [CONTACT Software](https://www.contact-software.com/) ([GitHub](https://github.com/cslab)) and subsequently made available under the Apache License Version 2.0.\n","funding_links":["https://github.com/sponsors/yaal-coop"],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpython-scim%2Fscim2-server","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpython-scim%2Fscim2-server","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpython-scim%2Fscim2-server/lists"}