Remote MCP Servers

Connect custom tools to your AI workflows.

This project hosts lightweight MCP servers for local or remote clients such as HiDestina, giving AI assistants access to specific tools like current time lookup and safe HTTP fetches.

Available MCP tools

  • current_date_time
    Returns the current time in ISO format and a localized human-readable form.
  • http_get
    Performs an HTTP GET request and returns a safe preview of the response body.

How to connect

Use the MCP endpoint over HTTP:

POST /mcp

Health check:

GET /health

Local example:

http://localhost:3000/mcp

Cloudflare deployment example:

https://<your-worker>.workers.dev/mcp

Example connection flow

1. Start the server
   npm install
   npm start

2. Connect your MCP client to:
   http://localhost:3000/mcp

3. Send MCP JSON-RPC requests over POST /mcp
   to invoke current_date_time or http_get