Personal Toolkit MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Personal Toolkit MCP ServerAdd a high priority todo: 'Review project plan'"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🛠️ Personal Utility Toolkit — MCP Server
A local MCP server built with FastMCP that plugs directly into Claude Desktop.
Tools
Category | Tool | Description |
📝 Text |
| Words, chars, sentences |
📝 Text |
| Reverse a string |
📝 Text |
| Convert text to uppercase |
📝 Text |
| Convert text to lowercase |
📝 Text |
| Count vowels and consonants |
📝 Text |
| Pull emails from text |
📝 Text |
| Secure password generator |
🔢 Math |
| Safe expression evaluator |
🔢 Math |
| Length / weight / temperature |
🔢 Math |
| Primality + factorization |
✅ Todo |
| Add a todo with priority |
✅ Todo |
| Filter pending / done |
✅ Todo |
| Mark done by ID |
✅ Todo |
| Remove by ID |
✅ Todo |
| Wipe all completed todos |
Related MCP server: Todoist MCP Server
Quick Start
git clone https://github.com/YOUR_USERNAME/local-mcp-server
cd local-mcp-server
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\activate
pip install -r requirements.txtConnect to Claude Desktop
Add this block to your claude_desktop_config.json:
Mac:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"personal-toolkit": {
"command": "/absolute/path/to/venv/bin/python",
"args": ["/absolute/path/to/server.py"]
}
}
}💡 On Windows use
venv\\Scripts\\python.exe
Restart Claude Desktop — you'll see the 🔨 tools icon appear!
Try These Prompts
Count the words in: "The quick brown fox jumps over the lazy dog"
Calculate: sqrt(256) + 2 ** 8
Convert 100 miles to km
Add a high priority todo: "Learn MCP servers"
List all my pending todos
Is 97 a prime number?
Generate a 20-character password
Extract emails from: "contact john@example.com or jane@test.org"Project Structure
local-mcp-server/
├── server.py # Main MCP server — tool registration & entry point
├── tools/
│ ├── __init__.py # Makes tools/ a Python package
│ ├── text_tools.py # Text utility functions
│ ├── math_tools.py # Math / calculator functions
│ └── todo_tools.py # Persistent todo list (todos.json)
├── requirements.txt
└── README.mdThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/SANDEEP-KR-MAHTO/personal-toolkit-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server