My 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., "@My MCP Serverwhat's the current time?"
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.
My MCP Server
A shareable MCP (Model Context Protocol) server for Claude.ai.
What's included
Tool | What it does |
| Echoes back a message — good for testing |
| Returns current UTC date/time |
| Evaluates basic math expressions |
Related MCP server: simple-mcp
Deploy to Railway (recommended — free tier)
Push this folder to a GitHub repo
Go to railway.app → New Project → Deploy from GitHub
Select your repo — Railway auto-detects Node.js and deploys
Once deployed, copy your public URL (e.g.
https://myapp.railway.app)
Your MCP endpoint will be:
https://your-app.railway.app/sseDeploy to Render (also free)
Push to GitHub
Go to render.com → New Web Service
Connect your repo, set:
Build command:
npm installStart command:
npm start
Deploy — your URL will be
https://your-app.onrender.com/sse
Run locally
npm install
npm start
# Server runs at http://localhost:3000
# MCP endpoint: http://localhost:3000/sseShare with others
Send them this URL:
https://your-deployed-app.railway.app/sseThey add it in Claude.ai:
Profile icon → Settings → Integrations
Click "Add integration"
Paste the URL → Save
The tools appear immediately in their Claude chats
Add your own tools
Edit index.js and add a new tool after the comment block:
server.tool(
"my_tool_name",
"Description of what this tool does",
{
input_param: z.string().describe("What this parameter is"),
},
async ({ input_param }) => ({
content: [{ type: "text", text: `Result: ${input_param}` }],
})
);Then redeploy — tools are live immediately.
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.2
- Flicense-qualityCmaintenanceA minimal MCP server providing basic tools for arithmetic, text echoing, and timezone-aware current time retrieval.
- Flicense-qualityCmaintenanceA basic MCP server demonstrating tool registration and SSE transport, enabling AI clients to call greeting, arithmetic, and time tools.
- Flicense-qualityCmaintenanceA minimal MCP server that exposes tools for addition, echoing text, time lookup, and URL fetching, with support for HTTP and stdio transports.
Related MCP Connectors
MCP server exposing the Backtest360 engine API as tools for AI agents.
A basic MCP server to operate on the Postman API.
A very simple remote MCP server that greets you, with a custom icon.
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/fran2018-ctrl/npx-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server