Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

- Dependency updates

# v1.5.2 - 2026-05-27

- Add destructive hints for tools
- Enable OpenAI connectors in OAuth

# v1.5.0 - 2026-05-26

- Dependency updates
Expand Down
3 changes: 2 additions & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ const DEFAULT_ALLOWED_REDIRECT_URI_PATTERNS = [
'http://localhost:*', // Claude Desktop, VS Code, Windsurf, and anything else using a local loopback callback
'http://127.0.0.1:*',
'https://claude.ai/api/mcp/auth_callback', // Claude.ai web custom connectors
'https://chatgpt.com/connector_platform_oauth_redirect', // ChatGPT MCP connector
'https://chatgpt.com/connector/oauth/*', // ChatGPT / OpenAI Apps SDK connector (current per-connector callback id)
'https://chatgpt.com/connector_platform_oauth_redirect', // ChatGPT MCP connector (legacy, still honored for already-published apps)
'cursor://anysphere.cursor-mcp/oauth/callback', // Cursor (private-use URI scheme registered by the desktop app)
'https://api.devin.ai/mcp/oauth/callback', // Devin prod
'https://api.beta.devin.ai/mcp/oauth/callback', // Devin beta
Expand Down
1 change: 1 addition & 0 deletions test/lib/config.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const BASELINE_PATTERNS = [
'http://localhost:*',
'http://127.0.0.1:*',
'https://claude.ai/api/mcp/auth_callback',
'https://chatgpt.com/connector/oauth/*',
'https://chatgpt.com/connector_platform_oauth_redirect',
'cursor://anysphere.cursor-mcp/oauth/callback',
'https://api.devin.ai/mcp/oauth/callback',
Expand Down