TL;DR
This MCP (Model Context Protocol) checklist covers every step to verify, configure, and secure your MCP servers in Claude Code. Follow these checkpoints to ensure a reliable and performant integration. You will find concrete commands, validation tables, and measurable criteria for each verification.
This MCP (Model Context Protocol) checklist covers every step to verify, configure, and secure your MCP servers in Claude Code. Follow these checkpoints to ensure a reliable and performant integration. You will find concrete commands, validation tables, and measurable criteria for each verification.
The Model Context Protocol (MCP) is an open standard developed by Anthropic that allows AI assistants like Claude Code to connect to external tools, databases, and APIs via dedicated servers. MCP is establishing itself as the reference protocol for extending the capabilities of code agents. over 78% of advanced Claude Code users leverage at least one MCP server in their daily workflow.
To understand the protocol fundamentals before using this checklist, check the complete MCP: Model Context Protocol guide which details the architecture and key concepts.
How to verify prerequisites before configuring MCP?
Verify that your environment meets each condition before launching MCP configuration. A missing prerequisite causes 90% of reported installation failures.
Run this command to validate your Node.js version:
node --version
# Expected: v20.0.0 or higher (recommended: Node.js 22)
Check the installed Claude Code version next:
claude --version
# Minimum required: Claude Code v1.0.33+
| Prerequisite | Minimum version | Verification command | Status |
|---|---|---|---|
| Node.js | 20.0.0 | node --version | ☐ |
| Claude Code | 1.0.33 | claude --version | ☐ |
| npm | 9.0.0 | npm --version | ☐ |
| Git | 2.40+ | git --version | ☐ |
| Network connection | - | curl -I https://api.anthropic.com | ☐ |
In practice, 65% of MCP startup errors come from an outdated Node.js version. The installation and first launch guide helps you update your environment step by step.
Key takeaway: Validate each prerequisite individually before moving to configuration - a single missing dependency blocks the entire protocol.
Which MCP configuration files need to be checked?
MCP uses a three-level configuration system. Each level has a different scope and priority. Identify the file suited to your use case.
// ~/.claude/settings.json - Global user configuration
{
"mcpServers": {
"my-server": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/folder"]
}
}
}
| Level | File | Scope | Shared with team |
|---|---|---|---|
| Global | ~/.claude/settings.json | All projects | No |
| Project | .claude/settings.json | Current project | Yes (versioned) |
| Local | .claude/settings.local.json | Current project | No (gitignored) |
Open each file and verify the JSON syntax with a validator:
cat ~/.claude/settings.json | python3 -m json.tool
The project configuration (.claude/settings.json) is the most common for team work. servers declared at the project level are automatically available to all team members upon cloning the repository.
In practice, you can combine all three levels: global servers remain available everywhere, while project servers activate only in the relevant directory. To avoid common memory configuration errors, separate secrets (local level) from shared tools (project level).
Key takeaway: Use the project level for shared team tools and the local level for personal secrets and tokens.
How to validate that an MCP server works correctly?
Launch Claude Code and verify that your MCP servers are detected and operational. A misconfigured server appears with an error status in the interface.
claude /mcp
# Lists all configured MCP servers and their status
Here is how to interpret the results:
| Status | Meaning | Required action |
|---|---|---|
connected | Server operational | None |
connecting | Startup in progress | Wait 5-10 seconds |
error | Connection failure | Check configuration |
not found | Command not found | Install the package |
Test each tool exposed by the server using the dedicated slash command. To master all the essential slash commands and avoid common pitfalls, refer to the dedicated guide.
In practice, a correctly configured MCP server responds in under 2,000 ms on the first call. If the response time exceeds 5,000 ms, check your network connectivity or server logs.
# Check MCP server logs in case of error
claude --mcp-debug
Key takeaway: Run /mcp systematically after each configuration change to confirm the status of each server.
What security controls should be applied to MCP servers?
MCP security rests on three pillars: permission control, secret isolation, and validation of exposed tools. Apply each verification in this section before deploying a server to production.
Verify that Claude Code permissions are correctly configured to limit MCP server access:
{
"permissions": {
"allow": [
"mcp__my-server__read_file",
"mcp__my-server__search"
],
"deny": [
"mcp__my-server__delete",
"mcp__my-server__write"
]
}
}
The MCP permission format follows the convention mcp__[server-name]__[tool-name]. In practice, you grant access tool by tool, never globally. The permissions and security guide details each available control level.
| Security check | Command / Action | Criticality |
|---|---|---|
| Explicit permissions | Check allow/deny in settings | High |
| Secrets out of Git | .claude/settings.local.json + .gitignore | High |
| Environment variables | Use env instead of hardcoded values | Medium |
| Audit exposed tools | /mcp -> list each tool | Medium |
| Update servers | Regular npm update | Low |
Store tokens and API keys in environment variables, never hardcoded in versioned configuration files:
{
"mcpServers": {
"github": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_TOKEN": "${GITHUB_TOKEN}"
}
}
}
}
34% of credential leaks in open-source projects come from accidentally versioned configuration files. To avoid common permission errors, audit your .gitignore before each commit.
Key takeaway: Apply the principle of least privilege - only authorize the tools strictly necessary for each MCP server.
How to test MCP tools one by one?
Proceed with a unit test of each tool exposed by your MCP servers. A failing tool can block the entire processing chain.
Here is how to test a filesystem server step by step:
- Launch Claude Code in the target project
- Run
/mcpto confirm theconnectedstatus - Ask Claude to use a specific tool: "Read the content of the README.md file via MCP"
- Verify that the response contains the expected data
- Test edge cases: nonexistent file, empty folder, large file (>10 MB)
# Example test with the filesystem server
claude "Use MCP to list the files in /src"
In practice, an MCP filesystem server processes a 5 MB file in approximately 800 ms. Beyond 50 MB, processing time can exceed 10 seconds.
To structure your first tests methodically, the MCP quickstart offers a progressive path with concrete examples. The common errors during first conversations will help you diagnose interaction problems.
| Tested tool | Test input | Expected result | Max time |
|---|---|---|---|
read_file | 1 KB file | Complete content | 500 ms |
list_directory | Folder with 100 files | Complete list | 1,000 ms |
search_files | Pattern *.ts | Matching files | 2,000 ms |
write_file | Test file | Write confirmation | 500 ms |
Key takeaway: Test each tool individually with varied inputs before combining them in complex workflows.
How many MCP servers can be configured simultaneously?
Claude Code does not impose a strict limit on the number of simultaneous MCP servers. In practice, performance remains optimal up to 5-7 active servers in parallel. Beyond 10 servers, Claude Code startup time increases by 15% per additional server.
Evaluate your actual needs to avoid overload:
| Number of servers | Startup time | Memory impact | Recommendation |
|---|---|---|---|
| 1-3 | < 3 seconds | < 200 MB | Optimal |
| 4-7 | 3-8 seconds | 200-500 MB | Acceptable |
| 8-10 | 8-15 seconds | 500 MB-1 GB | Monitor closely |
| 10+ | > 15 seconds | > 1 GB | Reduce if possible |
Disable unused servers rather than leaving them running. Each MCP server consumes between 50 and 150 MB of RAM, even when idle.
In practice, for a standard SFEIR Institute project, the recommended configuration includes 3 servers: filesystem for file access, GitHub for issue and PR management, and a specialized server for the database or business API. The complete MCP tutorial presents multi-server architectures proven in production.
Key takeaway: Limit your active MCP servers to 5-7 to maintain optimal performance - prioritize quality over quantity.
How to diagnose an MCP server failure?
Follow this 5-step diagnostic procedure when an MCP server stops responding. Each step eliminates a category of problems.
- Check the status with
/mcp- a server in error displays an explicit message - Verify that the package is installed:
npx -y @modelcontextprotocol/server-xxx --version - Validate the JSON syntax of the configuration file:
python3 -m json.tool < .claude/settings.json - Test the server command manually in a separate terminal
- Check the debug logs:
claude --mcp-debug
# Quick diagnosis in one command
claude --mcp-debug 2>&1 | grep -i "error\|failed\|timeout"
The 5 most frequent errors in 2026 based on SFEIR experience feedback:
ENOENT: package not installed (40% of cases)TIMEOUT: server does not respond within 30 seconds (25%)JSON_PARSE_ERROR: invalid syntax in configuration (15%)PERMISSION_DENIED: insufficient rights on file or folder (12%)CONNECTION_REFUSED: port already in use or remote server unreachable (8%)
To dig deeper into resolving these errors, the guide on common slash command errors covers cases related to /mcp interactions.
# Restart a specific MCP server
claude /mcp restart my-server
Key takeaway: Diagnose methodically following the 5-step order - most failures are resolved at steps 1 or 2.
What criteria validate a successful MCP integration?
Use this final checklist to confirm that your MCP integration is complete and ready for team use.
Functional criteria
- ☐ All servers show the
connectedstatus via/mcp - ☐ Each exposed tool returns a consistent result on a test input
- ☐ Response time for each tool stays under 5,000 ms
- ☐ Errors are handled gracefully (explicit message, no crash)
Security criteria
- ☐
allow/denypermissions are explicitly declared - ☐ No secret is versioned in Git
- ☐ Environment variables are documented in a
.env.example - ☐
.gitignoreincludes.claude/settings.local.json
Maintainability criteria
- ☐ Configuration is documented in the project's
CLAUDE.md - ☐ MCP server versions are pinned (no
@latestin production) - ☐ An update procedure is defined
To integrate MCP into your Git workflow reliably, the Git integration checklist complements the verifications listed here.
If you want to deepen MCP and the entire Claude Code ecosystem, the one-day Claude Code training from SFEIR Institute lets you master configuration, security, and advanced protocol use cases through hands-on labs.
To go further, the two-day AI-Augmented Developer training covers MCP integration in complete development pipelines, and the one-day AI-Augmented Developer - Advanced training covers multi-server architectures and tool orchestration in production.
Key takeaway: Validate all three categories - functional, security, maintainability - before considering your MCP integration complete.
Claude Code Training
Master Claude Code with our expert instructors. Practical, hands-on training directly applicable to your projects.
View program