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., "@MCP ServerAdd user Alice with email alice@test.com"
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 Server (TypeScript)
A simple Model Context Protocol (MCP) server built with TypeScript.
It currently exposes one MCP tool:
createUser: Creates a new user and appends it tosrc/data/users.json.
Features
MCP server over stdio transport
Input validation with Zod
JSON-based data persistence for users
Related MCP server: Data Analysis MCP Server
Project Structure
src/
server.ts # MCP server entrypoint and tool registration
data/
users.json # Local user datastore
types/
user.types.ts # User input typePrerequisites
Node.js 18+
npm
Install
npm installRun (Development)
npm run server:devBuild
npm run server:buildCompiled output goes to build/.
Build Watch Mode
npm run server:build:watchInspect with MCP Inspector
Use the MCP Inspector to test tool calls interactively:
npm run server:inspectThen call the createUser tool with this shape:
{
"name": "Jane Doe",
"email": "jane.doe@example.com",
"address": "123 Main St, Springfield, IL",
"phone": "+1-555-555-5555"
}Successful calls append a new user record to src/data/users.json and return the created ID.
Available Scripts
server:dev- Run server from TypeScript source withtsxserver:build- Compile TypeScript tobuild/server:build:watch- Compile in watch modeserver:inspect- Launch MCP Inspector against the serverclient:dev- Reserved script inpackage.json(nosrc/client.tsfile currently in this workspace)
Notes
Data is persisted by writing directly to
src/data/users.json.User IDs are assigned as
users.length + 1.If you manually edit
users.json, keep it valid JSON.
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.
Related MCP Servers
- FlicenseAqualityCmaintenanceA simple local MCP server that provides greeting and integer addition tools.Last updated2
- Alicense-qualityDmaintenanceA simple Model Context Protocol (MCP) server that allows LLMs to create and manage user entries in a JSON file system database.Last updated1,983MIT
- Flicense-qualityDmaintenanceA user management MCP server that enables CRUD operations on users stored in a JSON file, with random user generation using Faker.Last updated181
- Alicense-qualityCmaintenanceA minimal, zero-dependency MCP server that enables defining and running tools over stdio transport, without extra features like HTTP or resources.Last updated391MIT
Related MCP Connectors
A basic MCP server to operate on the Postman API.
MCP server for the FFmpeg Micro video transcoding API — create, monitor, download transcodes.
An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform
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/GiftBanda/mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server