From fe41a584e19a254c1cc7605656706ac4a97e5495 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Wed, 11 Feb 2026 14:24:52 +0000 Subject: [PATCH 1/3] Add Stytch MCP server definition (Remote HTTP) Official Stytch remote MCP server for authentication management. Connects via OAuth 2.1 at https://mcp.stytch.dev/mcp. https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx --- servers/com.stytch-mcp.json | 45 +++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 servers/com.stytch-mcp.json diff --git a/servers/com.stytch-mcp.json b/servers/com.stytch-mcp.json new file mode 100644 index 0000000..bbc2065 --- /dev/null +++ b/servers/com.stytch-mcp.json @@ -0,0 +1,45 @@ +{ + "$schema": "../schemas/server-definition.schema.json", + "id": "com.stytch-mcp", + "name": "Stytch", + "alias": "stytch", + "description": "Manage Stytch authentication projects through the hosted remote MCP server. Configure auth methods, manage users, and set up SSO.", + "icon": "https://avatars.githubusercontent.com/u/69983493?v=4", + "schema_version": "2.1", + "categories": ["developer-tools"], + "tags": ["stytch", "authentication", "sso", "identity", "users", "auth"], + + "transport": { + "type": "http", + "url": "https://mcp.stytch.dev/mcp", + "metadata": { + "inputs": [] + } + }, + + "auth": { + "type": "oauth", + "instructions": "Connects via OAuth 2.1. Your MCP host will initiate the Stytch OAuth flow to authorize access." + }, + + "contributor": { + "name": "Stytch", + "github": "stytchauth", + "url": "https://stytch.com" + }, + + "links": { + "repository": "https://github.com/stytchauth", + "homepage": "https://stytch.com", + "documentation": "https://stytch.com/docs/workspace-management/stytch-mcp" + }, + + "platforms": ["all"], + + "capabilities": { + "tools": true, + "resources": false, + "prompts": false, + "read_only_mode": false + } +} From 21da2c466387c4fd16f352ba65786ebd9a21f955 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:11:06 +0800 Subject: [PATCH 2/3] fix: update server definition (repo URL: org page -> specific repo) --- servers/com.stytch-mcp.json | 25 +++++++++++++++---------- 1 file changed, 15 insertions(+), 10 deletions(-) diff --git a/servers/com.stytch-mcp.json b/servers/com.stytch-mcp.json index bbc2065..5c420ed 100644 --- a/servers/com.stytch-mcp.json +++ b/servers/com.stytch-mcp.json @@ -6,9 +6,17 @@ "description": "Manage Stytch authentication projects through the hosted remote MCP server. Configure auth methods, manage users, and set up SSO.", "icon": "https://avatars.githubusercontent.com/u/69983493?v=4", "schema_version": "2.1", - "categories": ["developer-tools"], - "tags": ["stytch", "authentication", "sso", "identity", "users", "auth"], - + "categories": [ + "developer-tools" + ], + "tags": [ + "stytch", + "authentication", + "sso", + "identity", + "users", + "auth" + ], "transport": { "type": "http", "url": "https://mcp.stytch.dev/mcp", @@ -16,26 +24,23 @@ "inputs": [] } }, - "auth": { "type": "oauth", "instructions": "Connects via OAuth 2.1. Your MCP host will initiate the Stytch OAuth flow to authorize access." }, - "contributor": { "name": "Stytch", "github": "stytchauth", "url": "https://stytch.com" }, - "links": { - "repository": "https://github.com/stytchauth", + "repository": "https://github.com/stytchauth/stytch-mcp", "homepage": "https://stytch.com", "documentation": "https://stytch.com/docs/workspace-management/stytch-mcp" }, - - "platforms": ["all"], - + "platforms": [ + "all" + ], "capabilities": { "tools": true, "resources": false, From 35fe35422d4ceade495dd98c4f94e69682491284 Mon Sep 17 00:00:00 2001 From: Mohammod Al Amin Ashik Date: Thu, 19 Feb 2026 19:20:47 +0800 Subject: [PATCH 3/3] fix: remove non-existent repo URL for Stytch --- servers/com.stytch-mcp.json | 1 - 1 file changed, 1 deletion(-) diff --git a/servers/com.stytch-mcp.json b/servers/com.stytch-mcp.json index 5c420ed..f420052 100644 --- a/servers/com.stytch-mcp.json +++ b/servers/com.stytch-mcp.json @@ -34,7 +34,6 @@ "url": "https://stytch.com" }, "links": { - "repository": "https://github.com/stytchauth/stytch-mcp", "homepage": "https://stytch.com", "documentation": "https://stytch.com/docs/workspace-management/stytch-mcp" },