From 67d016d6d719ba17d92f2fdc820ed38853ef26b5 Mon Sep 17 00:00:00 2001 From: Satya Patel Date: Sun, 8 Feb 2026 14:27:45 -0800 Subject: [PATCH 1/2] Add Neon, Linear, Sentry, and PostHog MCP servers Add project-level MCP server configs so all team members get access to these services in Claude Code. Neon, Linear, and Sentry use native HTTP transport with OAuth. PostHog uses mcp-remote bridge with Bearer token auth (requires POSTHOG_API_KEY env var). --- .mcp.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/.mcp.json b/.mcp.json index 53c636811dc..fd118e12ee7 100644 --- a/.mcp.json +++ b/.mcp.json @@ -11,6 +11,31 @@ "maestro": { "command": "maestro", "args": ["mcp"] + }, + "Neon": { + "type": "http", + "url": "https://mcp.neon.tech/mcp" + }, + "linear": { + "type": "http", + "url": "https://mcp.linear.app/mcp" + }, + "sentry": { + "type": "http", + "url": "https://mcp.sentry.dev/mcp" + }, + "posthog": { + "command": "npx", + "args": [ + "-y", + "mcp-remote@latest", + "https://mcp.posthog.com/mcp", + "--header", + "Authorization:${POSTHOG_AUTH_HEADER}" + ], + "env": { + "POSTHOG_AUTH_HEADER": "Bearer ${POSTHOG_API_KEY}" + } } } } From 3707b14a58744eb989dfde4c0bae1c633e339f61 Mon Sep 17 00:00:00 2001 From: Satya Patel Date: Mon, 9 Feb 2026 22:13:05 -0800 Subject: [PATCH 2/2] Apply suggestions from code review Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> --- .mcp.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.mcp.json b/.mcp.json index fd118e12ee7..539f904415d 100644 --- a/.mcp.json +++ b/.mcp.json @@ -12,7 +12,7 @@ "command": "maestro", "args": ["mcp"] }, - "Neon": { + "neon": { "type": "http", "url": "https://mcp.neon.tech/mcp" },