From 8c55cf03d28e0d8f8fc4cf1f262ea8b92908423b Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 14:21:13 +0000 Subject: [PATCH] Add Clerk MCP server definition (Remote HTTP) Official Clerk remote MCP server for authentication management. Manage users, organizations, and sessions via https://mcp.clerk.com/mcp. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.clerk-mcp.json | 45 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 servers/com.clerk-mcp.json diff --git a/servers/com.clerk-mcp.json b/servers/com.clerk-mcp.json new file mode 100644 index 0000000..ec44432 --- /dev/null +++ b/servers/com.clerk-mcp.json @@ -0,0 +1,45 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.clerk-mcp", + "name": "Clerk", + "alias": "clerk", + "description": "Manage users, organizations, sessions, and authentication through Clerk's remote MCP server. Query user data, manage roles, and configure auth settings.", + "icon": "https://avatars.githubusercontent.com/u/49538330?v=4", + "schema_version": "2.1", + "categories": ["developer-tools"], + "tags": ["clerk", "authentication", "users", "identity", "auth", "sessions", "organizations"], + + "transport": { + "type": "http", + "url": "https://mcp.clerk.com/mcp", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connects via OAuth. Your MCP host will initiate the Clerk OAuth flow to authorize access to your Clerk instance." + }, + + "contributor": { + "name": "Clerk", + "github": "clerk", + "url": "https://clerk.com" + }, + + "links": { + "repository": "https://github.com/clerk/mcp-tools", + "homepage": "https://clerk.com", + "documentation": "https://clerk.com/docs/guides/ai/mcp/clerk-mcp-server" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": true, + "read_only_mode": false + } +}