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
-
Install Claude Desktop
-
Open Claude Desktop
-
Add a new mcp server with Apple Key + , change to tab developer and open
alt text
-
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
}
}
}
-
Restart Claude Desktop
-
Test with Claude Desktop and the nice german word: Rindfleischetikettierungsüberwachungsaufgabenübertragungsgesetz

alt text
- Accept the new mcp server

alt text
8.Check logs of Claude Desktop:
tail -n 20 -F ~/Library/Logs/Claude/mcp*.log | grep "count-r"