mcp-server-count-r logo

mcp-server-count-r

by ma3u

This guide helps you create your own MCP (Message Channel Protocol) server and integrate it with Claude Desktop. It provides instructions on setting up the server and configuring Claude Desktop to communicate with it.

View on GitHub

Last updated: N/A

Create your first own server

Linux

python3 -m venv .venv
source .venv/bin/activate
pip install mcp
touch server.py

More MCP servers and clients

Setup of Claude Desktop

  1. Install Claude Desktop

  2. Open Claude Desktop

  3. Add a new mcp server with Apple Key + , change to tab developer and open

    alt text

    alt text

  4. Add a new mcp server to claude_desktop_config.json

{
  "mcpServers": {
    "count-r": {
      "command": "/Users/ma3u/projects/mcp-server-count-r-/.venv/bin/python",
      "args": [
        "/Users/ma3u/projects/mcp-server-count-r-/server.py"
      ],
      "host": "127.0.0.1",
      "port": 5000,
      "timeout": 10000
    }
  }
}
  1. Restart Claude Desktop

  2. Test with Claude Desktop and the nice german word: Rindfleischetikettierungsüberwachungsaufgabenübertragungsgesetz

alt text

alt text

  1. Accept the new mcp server

alt text

alt text

8.Check logs of Claude Desktop:

tail -n 20 -F ~/Library/Logs/Claude/mcp*.log | grep "count-r"