HTTP Server With MCP Support MCP Server

Runnable example of node-candidate-mcp-server.

Local serverstdioTypeScript

What is the HTTP Server With MCP Support MCP server?

Runnable example of node-candidate-mcp-server. That is what the http server with mcp support mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

An HTTP server built with Express and TypeScript that serves both a webpage and a Model Context Protocol (MCP) endpoint.

  • HTTP server with both web and MCP functionality
  • Stateless MCP server implementation with modern Streamable HTTP transport
  • TypeScript for type safety
  • Express.js for HTTP handling

The tools it exposes

The server publishes 8 tools. What each one is for:

  • CONTACT_EMAIL — The contact email address for the server
  • MAILGUN_API_KEY — The API key for Mailgun, used for sending emails
  • MAILGUN_DOMAIN — The domain for Mailgun, used for sending emails
  • CANDIDATE_NAME — The name of the candidate
  • RESUME_URL — The URL to the candidate's resume in PDF format
  • LINKEDIN_URL — The URL to the candidate's LinkedIn profile
  • GITHUB_URL — The URL to the candidate's GitHub profile
  • WEBSITE_URL — The URL to the candidate's personal website

What it needs from you

Configuration is passed through the environment: MAILGUN_API_KEY, RESUME_URL, LINKEDIN_URL, GITHUB_URL, WEBSITE_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 18+ - npm or yarn

Getting it running

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

How it compares

Among the team communication options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. HTTP Server With MCP Support's toolset — CONTACT_EMAIL, MAILGUN_API_KEY, MAILGUN_DOMAIN and 5 more — is a fair guide to whether it matches your workflow. It is maintained by jhgaylor; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against HTTP Server With MCP Support's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
CONTACT_EMAILThe contact email address for the server.
MAILGUN_API_KEYThe API key for Mailgun, used for sending emails.
MAILGUN_DOMAINThe domain for Mailgun, used for sending emails.
CANDIDATE_NAMEThe name of the candidate.
RESUME_URLThe URL to the candidate's resume in PDF format.
LINKEDIN_URLThe URL to the candidate's LinkedIn profile.
GITHUB_URLThe URL to the candidate's GitHub profile.
WEBSITE_URLThe URL to the candidate's personal website.

Configuration

  • Node.js 18+ - npm or yarn
VariableDescriptionRequired
MAILGUN_API_KEYCredential the server authenticates with.Yes
RESUME_URLEndpoint or connection string the server talks to.Yes
LINKEDIN_URLEndpoint or connection string the server talks to.Yes
GITHUB_URLEndpoint or connection string the server talks to.Yes
WEBSITE_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use HTTP Server With MCP Support to CONTACT EMAIL.
  • Use HTTP Server With MCP Support to MAILGUN API KEY.
  • Use HTTP Server With MCP Support to MAILGUN DOMAIN.

Frequently asked questions

Set environment variables such as `CONTACT_EMAIL`, `CANDIDATE_NAME`, `RESUME_URL`, etc., or update the values directly in `src/config.ts`. Restart the server for changes to take effect.