MCPcopy
hub / github.com/panva/node-oidc-provider

github.com/panva/node-oidc-provider @v9.8.6 sqlite

repository ↗ · DeepWiki ↗ · release v9.8.6 ↗
1,017 symbols 2,903 edges 401 files 13 documented · 1%
README

oidc-provider

This module provides an OAuth 2.0 (RFC 6749) Authorization Server with support for OpenID Connect (OIDC) and many other additional features and standards.

Table of Contents

Implemented specs & features

The following specifications are implemented by oidc-provider (not exhaustive):

Note that not all features are enabled by default, check the configuration section on how to enable them.

Supported Access Token formats:

The following specifications and drafts are implemented as experimental features:

Updates to experimental feature specification versions are released as MINOR library versions, if you utilize these features consider using the tilde ~ operator in your package.json since breaking changes may be introduced as part of these version updates. Alternatively acknowledge the version and be notified of breaking changes as part of your CI.

Certification

OpenID Certification
Filip Skokan has certified that oidc-provider conforms to the following profiles of the OpenID Connect™ protocol.

  • Basic, Implicit, Hybrid, Config, Form Post, and 3rd Party-Init
  • Back-Channel Logout and RP-Initiated Logout
  • FAPI 1.0
  • FAPI CIBA
  • FAPI 2.0

Sponsor

Auth0 by Okta

If you want to quickly add OpenID Connect authentication to Node.js apps, feel free to check out Auth0's Node.js SDK and free plan. Create an Auth0 account; it's free!

Support

If you or your company use this module, or you need help using/upgrading the module, please consider becoming a sponsor so I can continue maintaining it and adding new features carefree. The only way to guarantee you get feedback from the author & sole maintainer of this module is to support the package through GitHub Sponsors.

Documentation & Configuration

oidc-provider can be mounted to existing connect, express, fastify, hapi, or koa applications, see how. The authorization server allows to be extended and configured in various ways to fit a variety of uses. See the documentation and example folder.

import * as oidc from "oidc-provider";

const provider = new oidc.Provider("http://localhost:3000", {
  // refer to the documentation for other available configuration
  clients: [
    {
      client_id: "foo",
      client_secret: "bar",
      redirect_uris: ["http://localhost:8080/cb"],
      // ... other client properties
    },
  ],
});

const server = provider.listen(3000, () => {
  console.log(
    "oidc-provider listening on port 3000, check http://localhost:3000/.well-known/openid-configuration",
  );
});

External type definitions are available via DefinitelyTyped.

Community Guides

Collection of Community-maintained configuration use cases are in the Community Guides Discussions section

Events

oidc-provider instances are event emitters, using event handlers you can hook into the various actions and i.e. emit metrics that react to specific triggers. See the list of available emitted event names and their description.

Supported Versions

Version Security Fixes 🔑 Other Bug Fixes 🐞 New Features ⭐
v9.x Security Policy
v8.x Security Policy

Core symbols most depended-on inside this repo

get
called by 283
test/models.js
set
called by 249
lib/models/id_token.js
save
called by 204
lib/models/grant.js
sign
called by 147
test/external_signing/external_signing.config.js
for
called by 100
test/models.js
isSpecialUseIPv4
called by 66
lib/helpers/fetch_request.js
add
called by 60
lib/helpers/keystore.js
entity
called by 58
lib/helpers/oidc_context.js

Shape

Function 512
Method 355
Class 150

Languages

TypeScript100%

Modules by API surface

lib/helpers/defaults.js63 symbols
lib/models/client.js42 symbols
lib/provider.js37 symbols
lib/helpers/keystore.js36 symbols
lib/helpers/errors.js36 symbols
lib/helpers/oidc_context.js33 symbols
test/test_helper.js32 symbols
lib/helpers/configuration.js30 symbols
lib/helpers/client_schema.js29 symbols
lib/models/grant.js24 symbols
certification/fapi/index.js21 symbols
lib/models/session.js18 symbols

Dependencies from manifests, versioned

@biomejs/biome2.4.11 · 1×
@fastify/middie9.3.2 · 1×
@hapi/hapi21.4.9 · 1×
@koa/cors5.0.0 · 1×
@koa/ejs5.1.0 · 1×
@koa/router15.5.0 · 1×
base64url3.0.1 · 1×
chai6.2.2 · 1×
debug4.4.3 · 1×
desm1.3.1 · 1×
eta4.6.0 · 1×
express5.2.1 · 1×

For agents

$ claude mcp add node-oidc-provider \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact