MCP User CRUD 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., "@MCP User CRUD Serverlist all users"
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.
MCP User CRUD Server
A small test server that speaks MCP (Model Context Protocol). MCP is a standard way for AI assistants (like Claude) to call tools and get real data back, instead of just guessing answers.
This server manages a simple list of users (name, email, phone, age) stored in a plain JSON file. It's meant for testing and learning, not for storing real/production data.
What it can do
The server gives an AI assistant 5 tools it can call:
Tool | What it does |
| Show every user |
| Find users by any field (name, email, phone, age, id) |
| Create a new user |
| Change one or more fields on an existing user |
| Remove a user |
All the data lives in users_db.json, right next to the server script. You can open that file in any text editor to see or edit it directly.
Related MCP server: MCP Test Server
Before you start
You need Python 3.10 or newer installed on your computer.
Windows: download it from python.org
Mac: run
brew install python3(or download from python.org)Linux: usually already installed; if not,
sudo apt install python3 python3-venv(Ubuntu/Debian) or your distro's equivalent
You do not need to install anything else by hand — the launcher scripts below do that for you automatically the first time you run them.
How to run it
Pick the file that matches your computer. Everything else (installing dependencies, etc.) happens automatically.
Windows → double-click
run_server.batMac → double-click
run_server_mac.command(if macOS blocks it the first time, right-click the file → Open → confirm)Linux → open a terminal in this folder and run
bash run_server_linux.sh
The first time you run it, it may take a minute to set itself up. After that it starts instantly.
Choosing authentication
Every time you start the server, it asks how you want to protect it:
1. None (no authentication)
2. API Key (client sends X-API-Key header)
3. Bearer Token (client sends Authorization: Bearer <token> header)None — anyone who can reach the server can use it. Good for a quick local test.
API Key — the server makes up a secret key (or you can type your own), and only requests that include that exact key are allowed in.
Bearer Token — same idea as API Key, just using the
Authorization: Bearer ...header style that a lot of tools expect.
Whichever you pick, the server prints the secret and a ready-to-use connection block right in the console — you don't need to remember or configure anything by hand.
Connecting to it
When the server starts, it prints something like this:
This machine : http://127.0.0.1:8765/mcp
LAN / remote : http://192.168.1.42:8765/mcp
Auth mode : api_key
Secret : Xy82jKf...
Client config (Claude Desktop / Claude Code / Cursor, etc.):
{
"mcpServers": {
"test-user-db": {
"type": "streamable-http",
"url": "http://192.168.1.42:8765/mcp",
"headers": { "X-API-Key": "Xy82jKf..." }
}
}
}Copy that JSON block into whichever MCP-compatible app you're connecting from (Claude Desktop, Claude Code, Cursor, etc.), and it will be able to see and use the 5 tools listed above.
Use the
127.0.0.1URL if the app is on the same computer as the server.Use the
LAN / remoteURL if you're connecting from a different computer on the same network.
Files in this folder
File | Purpose |
| The actual server code |
| The user data (plain JSON, safe to edit by hand) |
| One-click launcher for Windows |
| One-click launcher for Mac |
| Launcher for Linux |
| List of Python packages the server needs |
| A script to test the server automatically (optional, not required to use the server) |
Good to know
This is a testing tool, not a production system. There's no encryption of the data file, and the API key / bearer token are simple shared secrets, not full user accounts.
Stopping the server: just close the console window, or press
Ctrl+Cinside it.To clear all data, delete everything inside
users_db.jsonand replace it with[]. If the file is missing entirely, the server just starts with zero users and creates the file again as soon as you add one.
This 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
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/parthdevani27/mcp-test-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server