136 description: "Access real-time customer conversations, tickets, and user data",136 description: "Access real-time customer conversations, tickets, and user data",
137 documentation: "https://developers.intercom.com/docs/guides/mcp",137 documentation: "https://developers.intercom.com/docs/guides/mcp",
138 urls: {138 urls: {
139 sse: "https://mcp.intercom.com/sse",
140 http: "https://mcp.intercom.com/mcp"139 http: "https://mcp.intercom.com/mcp"
141 },140 },
142 authentication: {141 authentication: {
169 description: "Integrate with Linear's issue tracking and project management",168 description: "Integrate with Linear's issue tracking and project management",
170 documentation: "https://linear.app/docs/mcp",169 documentation: "https://linear.app/docs/mcp",
171 urls: {170 urls: {
172 sse: "https://mcp.linear.app/sse"171 http: "https://mcp.linear.app/mcp"
173 },172 },
174 authentication: {173 authentication: {
175 type: "oauth"174 type: "oauth"
201 description: "Integrate PayPal commerce capabilities, payment processing, transaction management",200 description: "Integrate PayPal commerce capabilities, payment processing, transaction management",
202 documentation: "https://www.paypal.ai/",201 documentation: "https://www.paypal.ai/",
203 urls: {202 urls: {
204 sse: "https://mcp.paypal.com/sse",
205 http: "https://mcp.paypal.com/mcp"203 http: "https://mcp.paypal.com/mcp"
206 },204 },
207 authentication: {205 authentication: {
234 description: "Monitor errors, debug production issues",232 description: "Monitor errors, debug production issues",
235 documentation: "https://docs.sentry.io/product/sentry-mcp/",233 documentation: "https://docs.sentry.io/product/sentry-mcp/",
236 urls: {234 urls: {
237 sse: "https://mcp.sentry.dev/sse",
238 http: "https://mcp.sentry.dev/mcp"235 http: "https://mcp.sentry.dev/mcp"
239 },236 },
240 authentication: {237 authentication: {
1055You can use Claude Code itself as an MCP server that other applications can connect to:1052You can use Claude Code itself as an MCP server that other applications can connect to:
1056 1053
1057```bash theme={null}1054```bash theme={null}
1058# Start Claude as a stdio MCP server with explicit transport1055# Start Claude as a stdio MCP server
1059claude mcp serve --transport stdio1056claude mcp serve
1060```1057```
1061 1058
1062You can use this in Claude Desktop by adding this configuration to claude\_desktop\_config.json:1059You can use this in Claude Desktop by adding this configuration to claude\_desktop\_config.json:
1067 "claude-code": {1064 "claude-code": {
1068 "type": "stdio",1065 "type": "stdio",
1069 "command": "claude",1066 "command": "claude",
1070 "args": ["mcp", "serve", "--transport", "stdio"],1067 "args": ["mcp", "serve"],
1071 "env": {}1068 "env": {}
1072 }1069 }
1073 }1070 }