Oso Cloud MCP Server
Easily understand your authorization by querying the OSO Cloud API using natural language.
Ask AI about Oso Cloud MCP Server
Powered by Claude · Grounded in docs
I know everything about Oso Cloud MCP Server. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Reviews
Documentation
OSO Cloud MCP
A Model Context Protocol (MCP) server that integrates with OSO Cloud to provide authorization capabilities. This server acts as a bridge between your application and OSO Cloud's authorization service, allowing you to perform various authorization checks and queries through a standardized interface.
Supported Tools
The server provides the following tools:
-
get_policy
- Retrieves the current OSO Cloud policy
- Returns the policy as a JSON string
-
authorize
- Checks if an actor can perform a specific action on a resource
- Parameters:
actorType: Type of actor (e.g., 'User', 'Organization')actorId: ID of the actoraction: Action to checkresourceType: Type of resource (e.g., 'Document', 'Project')resourceId: ID of the resource
-
list_resources
- Lists resources of a specific type that an actor can perform an action on
- Parameters:
actorType: Type of actoractorId: ID of the actoraction: Action to checkresourceType: Type of resources to list
-
get_actions
- Gets all actions an actor can perform on a resource
- Parameters:
actorType: Type of actoractorId: ID of the actorresourceType: Type of resourceresourceId: ID of the resource
Configuration
To use this server, you need to provide the following configuration:
{
osoApiKey: string; // OSO Cloud API key
osoApiUrl: string; // OSO Cloud API URL (defaults to "https://cloud.osohq.com/api")
}
Smithery Integration
This project is available on Smithery at: https://smithery.ai/server/@robinbortlik/oso-cloud-mcp
Development
To run the project locally:
-
Install dependencies:
npm install -
Start the development server:
npm run dev
