Skip to main content
Glama
fran2018-ctrl

My MCP Server

My MCP Server

A shareable MCP (Model Context Protocol) server for Claude.ai.

What's included

Tool

What it does

echo

Echoes back a message — good for testing

get_datetime

Returns current UTC date/time

calculate

Evaluates basic math expressions


Related MCP server: simple-mcp

  1. Push this folder to a GitHub repo

  2. Go to railway.app → New Project → Deploy from GitHub

  3. Select your repo — Railway auto-detects Node.js and deploys

  4. Once deployed, copy your public URL (e.g. https://myapp.railway.app)

Your MCP endpoint will be:

https://your-app.railway.app/sse

Deploy to Render (also free)

  1. Push to GitHub

  2. Go to render.com → New Web Service

  3. Connect your repo, set:

    • Build command: npm install

    • Start command: npm start

  4. 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/sse

Share with others

Send them this URL:

https://your-deployed-app.railway.app/sse

They add it in Claude.ai:

  1. Profile icon → Settings → Integrations

  2. Click "Add integration"

  3. Paste the URL → Save

  4. 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.

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    A
    quality
    C
    maintenance
    A simple local MCP server that provides greeting and integer addition tools.
    2
  • F
    license
    -
    quality
    C
    maintenance
    A minimal MCP server providing basic tools for arithmetic, text echoing, and timezone-aware current time retrieval.
  • F
    license
    -
    quality
    C
    maintenance
    A minimal MCP server that exposes tools for addition, echoing text, time lookup, and URL fetching, with support for HTTP and stdio transports.

View all related MCP servers

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.

View all MCP Connectors

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/fran2018-ctrl/npx-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server