O

Okta

Query Okta users, groups and apps.

·No reviews yet
Repo
Share:

About

Auto-generated

Okta is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Okta.

What does the Okta MCP enable?
The Okta MCP allows users to query Okta for information on users, groups, and applications. It provides a standardized interface for interacting with Okta identity data within an MCP client.
How do I install the Okta MCP in Cline?
Installation in Cline typically involves adding the MCP's repository URL and then installing the 'okta' slug. The exact commands depend on your Cline version and configuration.
Does this MCP require an authentication key?
Yes, the Okta MCP requires an API key for authentication. This key should be generated within your Okta tenant and configured securely when using the MCP.
What are the core capabilities of the Okta MCP?
The core capabilities revolve around querying identity data. Users can retrieve details about Okta users, manage group memberships, and list configured applications.
What is a common gotcha when using the Okta MCP?
A common gotcha is ensuring the API key has the correct permissions within Okta to perform the desired queries. Insufficient permissions will result in access denied errors.

Install Okta

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "okta": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-okta"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "okta": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-okta"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "okta": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-okta"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.