Skip to main content
0

Your First MCP Server in 60 Seconds

A
a-gnt2 min read

Install your first MCP server and see it work. One minute. No experience required.

60 Seconds. Seriously.

You've heard about MCP servers. You're not sure what they are or how they work. Let's skip the theory and just install one. You'll understand it better by using it than by reading about it.

Prerequisites

You need one of these AI apps installed:
- Claude Desktop (download from claude.ai)
- Claude Code (install with npm install -g @anthropic-ai/claude-code)
- Cursor (download from cursor.com)

And you need Node.js installed (download from nodejs.org if you don't have it).

The 60-Second Install

We're going to install the filesystem MCP server. It lets your AI read and write files on your computer.

For Claude Code (fastest)

Open your terminal and run:

bashclaude mcp add filesystem -- npx @modelcontextprotocol/server-filesystem ~/Documents

Done. Claude Code can now read files in your Documents folder.

For Claude Desktop

Open your Claude Desktop config file:

  • Mac: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add this:

json{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-filesystem", "/Users/you/Documents"]
    }
  }
}

Replace /Users/you/Documents with your actual path. Restart Claude Desktop.

Test It

Open Claude and say:

"List the files in my Documents folder."

Claude will use the filesystem server to actually read your directory and list the files. Not guess. Not hallucinate. Actually read them.

Now try:

"Read the contents of [filename] and summarize it."

Your AI just got the ability to see your files. That's an MCP server at work.

What Just Happened

You installed a small program (the MCP server) that acts as a bridge between your AI and your file system. The AI sends requests to the server ("list files in this directory"), the server executes them, and sends the results back.

The key insight: the AI doesn't access your files directly. The MCP server mediates, which means you control exactly what the AI can access.

Next Steps

Now that you've done one, the pattern is the same for every MCP server:

  1. Find it on a-gnt.com
  2. Copy the install command
  3. Run it or add it to your config
  4. Use it

Here are good ones to try next:

  • Brave Search — lets your AI search the web
  • Memory — gives your AI persistent memory
  • GitHub — lets your AI manage repositories
  • Sequential Thinking — structured problem-solving

Each one takes about 60 seconds. Before you know it, you'll have an AI that can research, remember, read files, and manage your code. All from a few simple installs.

Browse the full catalog of 300+ MCP servers on a-gnt.com.

Share this post:

Ratings & Reviews

0.0

out of 5

0 ratings

No reviews yet. Be the first to share your experience.