public/SKILLS/Development & Code Tools/claude-mcp-expert/SKILL.md
Model Context Protocol (MCP) expert for Claude Code. Install, configure, and troubleshoot MCP servers. Covers HTTP, SSE, and stdio transports, authentication, popular integrations (Sentry, GitHub, Jira, Notion, databases). Triggers on MCP, Model Context Protocol, MCP server, installing MCP, connecting tools, webhooks, remote server.
npx skillsauth add eric861129/skills_all-in-one claude-mcp-expertInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Connect Claude Code to external tools, databases, and services using Model Context Protocol (MCP).
.mcp.jsonModel Context Protocol (MCP) is an open standard that connects AI agents to:
# Add an HTTP server
claude mcp add --transport http sentry https://mcp.sentry.dev/mcp
# Add an SSE server
claude mcp add --transport sse atlassian https://mcp.atlassian.com/v1/sse
# Add a stdio server (npm package)
claude mcp add --transport stdio github -- npx -y @modelcontextprotocol/server-github
# Manage servers interactively
/mcp
For cloud services with REST-like endpoints.
claude mcp add --transport http sentry https://mcp.sentry.dev/mcp
claude mcp add --transport http github https://api.github.com/mcp
claude mcp add --transport http notion https://mcp.notion.com/mcp
For streaming services.
claude mcp add --transport sse atlassian https://mcp.atlassian.com/v1/sse
claude mcp add --transport sse asana https://mcp.asana.com/sse
For local tools or npm packages.
claude mcp add --transport stdio postgres \
--env POSTGRES_CONNECTION_STRING="postgresql://user:pass@localhost:5432/db" \
-- npx -y @modelcontextprotocol/server-postgres
claude mcp add --transport stdio filesystem \
--env ALLOWED_DIRECTORIES="/path/to/dir" \
-- npx -y @modelcontextprotocol/server-filesystem
| Service | Command |
|---------|---------|
| Sentry | claude mcp add --transport http sentry https://mcp.sentry.dev/mcp |
| GitHub | claude mcp add --transport http github https://api.github.com/mcp |
| Socket | claude mcp add --transport http socket https://mcp.socket.dev/ |
| Service | Command |
|---------|---------|
| Jira | claude mcp add --transport sse atlassian https://mcp.atlassian.com/v1/sse |
| Linear | claude mcp add --transport http linear https://mcp.linear.app/mcp |
| Notion | claude mcp add --transport http notion https://mcp.notion.com/mcp |
| Asana | claude mcp add --transport sse asana https://mcp.asana.com/sse |
# PostgreSQL
claude mcp add --transport stdio postgres \
--env POSTGRES_CONNECTION_STRING="postgresql://localhost:5432/mydb" \
-- npx -y @modelcontextprotocol/server-postgres
# MongoDB
claude mcp add --transport stdio mongodb \
--env MONGODB_URI="mongodb://localhost:27017/mydb" \
-- npx -y @modelcontextprotocol/server-mongodb
# Slack
claude mcp add --transport stdio slack \
--env SLACK_BOT_TOKEN=xoxb-your-token \
--env SLACK_TEAM_ID=T1234567 \
-- npx -y @modelcontextprotocol/server-slack
# Gmail
claude mcp add --transport stdio gmail \
-- npx -y @modelcontextprotocol/server-gmail
{
"mcpServers": {
"server-name": {
"transport": "http",
"url": "https://mcp.service.com/mcp"
},
"database": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres"],
"env": {
"POSTGRES_CONNECTION_STRING": "postgresql://localhost/db"
}
}
}
}
| Scope | Location | Use Case |
|-------|----------|----------|
| User | ~/.claude/.mcp.json | Personal tools, global |
| Project | .claude/.mcp.json | Team-shared, git committed |
| Local | .claude/.mcp.local.json | Personal overrides, not committed |
claude mcp add --transport http sentry https://mcp.sentry.dev/mcp --user # Global
claude mcp add --transport http linear https://mcp.linear.app/mcp --project # Team
claude mcp add --transport http notion https://mcp.notion.com/mcp --local # Personal override
# Install server
claude mcp add --transport http github https://api.github.com/mcp
# Authenticate via /mcp command
/mcp
# Select: Authenticate with server
# Browser opens → authorize → done
claude mcp add --transport stdio server-name \
--env API_KEY=your_api_key \
-- npx -y package-name
{
"env": {
"GITHUB_TOKEN": "ghp_xxxxx",
"SENTRY_AUTH_TOKEN": "sntrys_xxxxx"
}
}
Once connected, use naturally:
"Check Sentry for errors in the last 24 hours"
"Create a PR for this feature on GitHub"
"List my assigned Jira tickets"
"Query the users table for active accounts"
Reference MCP-provided files:
Review @mcp://github/README.md and suggest improvements
MCP prompts become slash commands:
/mcp__github__create_issue "Bug in login" high
/mcp__jira__update_status PROJ-123 "In Progress"
/mcp
# Options:
# - View all servers
# - Add new server
# - Remove server
# - Authenticate
# - View tools/prompts/resources
claude mcp list # List servers
claude mcp add ... # Add server
claude mcp remove server-name # Remove server
/mcp → Authenticateclaude --debug/mcp → Clear auth → Re-authenticate# Test command manually
npx -y @modelcontextprotocol/server-postgres
# Check environment variables are set
echo $POSTGRES_CONNECTION_STRING
# Verify npm package exists
npm info @modelcontextprotocol/server-postgres
/mcpDO:
DON'T:
# Setup
claude mcp add --transport http github https://api.github.com/mcp
claude mcp add --transport sse atlassian https://mcp.atlassian.com/v1/sse
# Usage
"Read JIRA ticket ENG-123, implement the feature, and create a PR on GitHub"
# Setup
claude mcp add --transport http sentry https://mcp.sentry.dev/mcp
# Usage
"Check Sentry for errors in the last hour and fix them"
# Setup
claude mcp add --transport stdio postgres \
--env POSTGRES_CONNECTION_STRING="postgresql://localhost/analytics" \
-- npx -y @modelcontextprotocol/server-postgres
# Usage
"Find users who signed up this month and summarize their activity"
development
Run structured What-If scenario analysis with multi-branch possibility exploration. Use this skill when the user asks speculative questions like "what if...", "what would happen if...", "what are the possibilities", "explore scenarios", "scenario analysis", "possibility space", "what could go wrong", "best case / worst case", "risk analysis", "contingency planning", "strategic options", or any question about uncertain futures. Also trigger when the user faces a fork-in-the-road decision, wants to stress-test an idea, or needs to think through consequences before committing.
development
Access comprehensive LaTeX templates, formatting requirements, and submission guidelines for major scientific publication venues (Nature, Science, PLOS, IEEE, ACM), academic conferences (NeurIPS, ICML, CVPR, CHI), research posters, and grant proposals (NSF, NIH, DOE, DARPA). This skill should be used when preparing manuscripts for journal submission, conference papers, research posters, or grant proposals and need venue-specific formatting requirements and templates.
development
Use when challenging ideas, plans, decisions, or proposals using structured critical reasoning. Invoke to play devil's advocate, run a pre-mortem, red team, or audit evidence and assumptions.
tools
Core skill for the deep research and writing tool. Write scientific manuscripts in full paragraphs (never bullet points). Use two-stage process with (1) section outlines with key points using research-lookup then (2) convert to flowing prose. IMRAD structure, citations (APA/AMA/Vancouver), figures/tables, reporting guidelines (CONSORT/STROBE/PRISMA), for research papers and journal submissions.