Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions src/oracle-oci-mcp-auth-provider/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# Changelog

All notable changes to Oracle OCI MCP Auth Provider are documented in this file.

## Unreleased

### Added

- Added reusable security-token profile, instance-principal, resource-principal
session-token, and user-principal session-token authentication providers.
- Added a Database-compatible RPST environment constructor that preserves IMDS
endpoint resolution, signed token bootstrap, query-string retry, and timeout behavior.
3 changes: 3 additions & 0 deletions src/oracle-oci-mcp-auth-provider/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Oracle OCI MCP Auth Provider

Reusable profile, instance-principal, resource-principal session-token, and user-principal session-token authentication providers for Oracle MCP servers.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
"""Reusable OCI authentication providers for MCP servers."""

from .providers import (
AuthContext,
InstancePrincipalProvider,
ResourcePrincipalSessionTokenProvider,
SecurityTokenProfileProvider,
UserPrincipalSessionTokenProvider,
UpstAuthenticationError,
)

__all__ = [
"AuthContext",
"InstancePrincipalProvider",
"ResourcePrincipalSessionTokenProvider",
"SecurityTokenProfileProvider",
"UserPrincipalSessionTokenProvider",
"UpstAuthenticationError",
]
Loading
Loading