JavaScript is disabled. Some features may not work.
MCP Beginner Guide — How to Install & Use MCP Servers | SkillsNav
🇺🇸 English🇨🇳 中文
SkillsNav
Home

MCP Beginner Guide — How to Install & Use MCP Servers

MCP (Model Context Protocol) is an open standard that lets AI agents talk to external tools — databases, browsers, APIs, file systems, and more. Think of MCP servers as "plugins" that give your AI agent new superpowers.

What Is MCP?

Created by Anthropic in 2024, MCP is like a "USB-C port for AI." Before MCP, every AI tool had its own way of connecting to external services. Now, one MCP server works with Claude Desktop, Claude Code, Cursor, and any other MCP-compatible client.

Analogy: Skills (SKILL.md) = teaching the AI. MCP Server = giving the AI a tool.

How MCP Works

  1. Install an MCP server on your machine
  2. Tell Claude Desktop about it in a config file
  3. When Claude needs that tool, it calls the MCP server
  4. The server does the work and returns results

Step 1: Install Your First MCP Server

Let us install the Filesystem MCP server:

npx -y @modelcontextprotocol/server-filesystem /path/to/allowed/directory

Step 2: Configure Claude Desktop

Edit claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/; Windows: %APPDATA%\Claude):

{"mcpServers": {"filesystem": {"command": "npx", "args": ["-y", "@modelcontextprotocol/server-filesystem", "/path/to/allowed"]}}}

Restart Claude Desktop — look for the 🔨 icon.

Step 3: Configure Claude Code

In terminal: claude mcp add filesystem -- npx -y @modelcontextprotocol/server-filesystem /path/to/project

Top 5 MCP Servers for Beginners

ServerPurposeStars
FilesystemRead/write files87K ★
GitHubIssues, PRs, repos30K ★
PlaywrightBrowser automation34K ★
Chrome DevToolsInspect & debug44K ★
Context7Library docs for LLMs57K ★

Browse all 29 MCP servers in our MCP Servers category.

MCP vs Skills

SkillsMCP Servers
WhatTeaches HOWGives a TOOL
Example"Write better code reviews""Create a GitHub PR"
InstallCopy SKILL.mdInstall server + config

FAQ

Do I need both? They complement each other. Skills for teaching, MCP for tooling.

Is MCP secure? MCP servers run locally. Review before installing.

Build my own? Yes — MCP Python SDK (23K ★) or FastMCP (25K ★).