What are third party connectors?
Custom connectors allow Claude to operate within your preferred software and leverage comprehensive context from your external tools. You can:- Connect Claude to existing remote MCP servers
- Build your own remote MCP servers for any tool
Finding connectors
Browse the Connectors Directory to discover third-party MCP servers that are ready to use across all Claude products. Some are verified by Anthropic and others are community connectors; see connector verification.Adding custom connectors
You can manually add any third-party connector to Claude as long as you have the URL of that remote MCP server.For Team and Enterprise plans
Owners must:- Navigate to Admin settings > Connectors
- Click “Add custom connector”
- Enter the remote MCP server URL
- Optionally configure OAuth Client ID/Secret in Advanced settings
- Click “Add”
- Go to Settings > Connectors
- Find the connector with “Custom” label
- Click “Connect” to authenticate
For Free, Pro, and Max plans
- Navigate to Settings > Connectors
- Click “Add custom connector”
- Enter the remote MCP server URL
- Optionally configure OAuth credentials
- Click “Add”
Enabling connectors in chat
Use the ”+” button in your chat interface to access “Connectors,” where you can enable/disable connectors per conversation.Authenticating with request headers
Request header authentication is in beta. This feature is being slowly rolled out to customers; contact Anthropic for early access.
Authorization: OAuth owns that header, so it cannot be configured as a request header on an OAuth connection.
Adding a request header
- In the Add custom connector dialog, open Request headers.
- Select a header name from the list, or enter one manually. Claude accepts a fixed set of standard authentication and routing header names such as
authorization,x-api-key, andx-auth-token. Header names are restricted to this allowlist for security reasons: each name is reviewed before Claude will send it to a third-party server, which prevents connector configuration from being used to send arbitrary header names. To request an addition to the allowlist, contact your Anthropic representative. - Enter the header value exactly as your server expects to receive it.
- Choose whether the header is Required. When a required header has no stored value at connection time, the connection fails. When an optional header has no value, Claude simply omits it from the request.
- Repeat for any additional headers your server needs (you can add up to four), then click Add.
Enter the full header value
Claude sends the value exactly as you enter it. It does not add an authentication scheme or any other prefix. For anAuthorization header, include the scheme in the value:
| You enter | Claude sends |
|---|---|
Bearer your-token | Authorization: Bearer your-token |
your-token | Authorization: your-token |
Authorization: Bearer YOUR_TOKEN, enter Bearer followed by your token, including the space. The same applies to Basic authentication: enter Basic followed by the base64-encoded credentials.
Managing connectors
To remove or edit connectors:- Go to Settings > Connectors
- Click “Remove” or select the three-dot menu
- Follow prompts to edit or remove
Security and privacy
Best practices
- Only connect to servers from trusted organizations
- Carefully review requested permission scopes during authentication
- Be aware of prompt injection risks; Claude has built-in protections
- Monitor for unexpected changes in tool behavior
Tool actions
Remote MCP servers enable Claude to invoke tools that can:- Read data from applications
- Create, modify, or delete data
- Take actions on your behalf
- Monitor Claude’s actions for unintended effects
- Review tool approval requests carefully
- Only click “Allow always” for trusted servers
- Disable irrelevant tools via the “Search and tools” menu
Reporting issues
Report malicious MCP servers to Anthropic’s Bug Bounty Program.Related topics
Building Connectors
Learn to build your own MCP servers.
Connectors Directory
Browse pre-built connectors.
MCP Overview
Understand the Model Context Protocol.
Desktop Extensions
Deploy enterprise-grade MCP servers.
MCP in Claude Code
Add the same server to Claude Code from the command line.