External Tool Connection via MCP
I'll help you connect to external tools and services through Model Context Protocol (MCP), enabling direct integration with GitHub, databases, APIs, and more.
Arguments: $ARGUMENTS - tool/service name, connection details, or integration type
Tool Connection Overview
Connect Claude Code to:
- GitHub - Repositories, issues, PRs
- Databases - PostgreSQL, MySQL, MongoDB, Redis
- APIs - REST, GraphQL, gRPC
- Cloud Services - AWS, GCP, Azure
- Project Tools - Jira, Linear, Slack
Token Optimization
Expected range: 300–800 tokens (initial), 50 tokens (already connected)
Caching: Caches tool connection state in .claude/cache/tools/connections.json for 7 days.
Early exit: Returns immediately if the requested tool is already connected.
Patterns used: Grep-before-Read, early exit, caching
1---2name: tool-connect3description: Connect to external tools via MCP (GitHub, databases, APIs)4---56# External Tool Connection via MCP78I'll help you connect to external tools and services through Model Context Protocol (MCP), enabling direct integration with GitHub, databases, APIs, and more.910Arguments: `$ARGUMENTS` - tool/service name, connection details, or integration type1112## Tool Connection Overview1314Connect Claude Code to:15- **GitHub** - Repositories, issues, PRs16- **Databases** - PostgreSQL, MySQL, MongoDB, Redis17- **APIs** - REST, GraphQL, gRPC18- **Cloud Services** - AWS, GCP, Azure19- **Project Tools** - Jira, Linear, Slack2021## Token Optimization2223**Expected range**: 300–800 tokens (initial), 50 tokens (already connected)2425**Caching**: Caches tool connection state in `.claude/cache/tools/connections.json` for 7 days.2627**Early exit**: Returns immediately if the requested tool is already connected.2829**Patterns used**: Grep-before-Read, early exit, caching