MCP.so
登录

HTTP Server with MCP Support

@jhgaylor

关于 HTTP Server with MCP Support

MCP Server for Jake Gaylor - Connect and ask your LLM about me Today!

基本信息

分类

其他

运行时

nunjucks

传输方式

stdio

发布者

jhgaylor

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is HTTP Server with MCP Support?

An HTTP server built with Express and TypeScript that serves both a webpage and a Model Context Protocol (MCP) endpoint. It provides a stateless MCP implementation using modern Streamable HTTP transport.

How to use HTTP Server with MCP Support?

Install Node.js 18+ and npm, clone the repository, run npm install and npm run build. Start in development mode with npm run dev. Send JSON‑RPC requests via curl to POST /mcp — for example, initialize or tools/call with the echo tool.

Key features of HTTP Server with MCP Support

  • Express and TypeScript HTTP server
  • Stateless MCP with Streamable HTTP transport
  • Webpage at GET / and MCP endpoint at POST /mcp
  • Echo resource (echo://{message}), tool, and prompt
  • TypeScript type safety

Use cases of HTTP Server with MCP Support

  • Integrating LLMs with external functionality via the MCP protocol
  • Testing MCP interactions (initialize, tool calls) locally
  • Serving a basic webpage alongside a standards‑based MCP endpoint
  • Demonstrating a stateless, streamable HTTP MCP server

FAQ from HTTP Server with MCP Support

What are the runtime requirements?

Node.js 18+ and npm or yarn.

What MCP endpoint does the server expose?

The MCP endpoint is at POST /mcp on the running server.

What MCP components are implemented?

A resource (echo://{message}), a tool (echo), and a prompt (echo) — all echo the provided message back.

Is the MCP server stateful or stateless?

It is stateless and uses the modern Streamable HTTP transport.

How can I test the MCP endpoint?

Use the curl commands shown in the README, for example an initialize request or a tools/call request with the echo tool and a message argument.

评论

其他 分类下的更多 MCP 服务器