C
Clerk
Manage Clerk users, orgs and sessions.
·No reviews yet
Share:
About
Auto-generated
Clerk 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 Clerk.
- What is the Clerk MCP and what does it manage?
- The Clerk MCP allows developers to manage users, organizations, and sessions within the Clerk identity platform. It provides a standardized interface for common identity management tasks.
- How can I configure the Clerk MCP for use with a client like Cline?
- Configuration depends on the MCP client. Typically, you would specify the Clerk MCP as a service endpoint, often by providing its 'stdio' transport and any required API key in the client's settings or command-line arguments.
- Does the Clerk MCP require an API key for authentication?
- Yes, the Clerk MCP uses an API key for authentication. You will need to obtain a valid API key from Clerk and provide it when configuring the MCP.
- What are the primary capabilities exposed by the Clerk MCP?
- The Clerk MCP is designed to manage core identity concepts: users, organizations, and sessions. Specific tools exposed are not listed, but typically include operations like creating, updating, and deleting these entities.
- Is there a cost associated with using the Clerk MCP?
- The Clerk MCP itself is open source and community-provided. Any costs depend on your usage of the underlying Clerk service, which may have its own pricing tiers based on features or usage volume.
- What is a common limitation or prerequisite for using the Clerk MCP?
- A prerequisite is having an existing Clerk project configured and accessible to generate the necessary API keys. The MCP primarily integrates with and manages an already provisioned Clerk service.
Install Clerk
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"clerk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-clerk"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"clerk": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-clerk"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"clerk": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-clerk"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.