Express MCP Server Echo
익스프레스 MCP 서버
Express와 TypeScript로 구축된 상태 비저장 모델 컨텍스트 프로토콜(MCP) 서버입니다.
특징
최신 Streamable HTTP 전송을 통한 상태 비저장 MCP 서버 구현
유형 안전을 위한 TypeScript
HTTP 처리를 위한 Express.js
Related MCP server: Echo MCP Server
요구 사항
노드.js 18+
npm 또는 yarn
설치
지엑스피1
개발
# Build the TypeScript code
npm run build
# Run in development mode with auto-reloading
npm run dev
# Run tests (when added)
npm test서버 구조
src/
├── index.ts # Main application entry point
└── server.ts # MCP server definition with resource, tool, and prompt사용 가능한 기능
이 서버는 세 가지 MCP 구성 요소를 사용하여 간단한 에코 엔드포인트를 구현합니다.
리소스 :
echo://{message}- 메시지를 리소스로 반환합니다.도구 :
echo- 제공된 메시지를 도구 응답으로 다시 에코합니다.프롬프트 :
echo- 제공된 메시지로 사용자 프롬프트를 생성합니다.
MCP 프로토콜
이 서버는 LLM이 외부 데이터 및 기능과 상호 작용하는 표준화된 방식인 모델 컨텍스트 프로토콜 (MCP)을 구현합니다. JSON-RPC 요청에 응답하는 상태 비저장 API 엔드포인트를 제공합니다.
API 사용
JSON-RPC 페이로드를 사용하여 /mcp 에 POST 요청을 보냅니다.
초기화
curl -X POST http://localhost:3001/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Accept: text/event-stream" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {
"protocolVersion": "2024-11-05",
"capabilities": {
"roots": {
"listChanged": true
},
"sampling": {}
},
"clientInfo": {
"name": "ExampleClient",
"version": "1.0.0"
}
}
}'에코 도구 호출
curl -X POST http://localhost:3001/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json" \
-H "Accept: text/event-stream" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "echo",
"arguments": {
"message": "Hello, World!"
}
},
"id": 1
}'특허
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 Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
The Mercado Pago MCP Server implements the Model Context Protocol to provide AI agents and LLMs with access to Mercado Pago's APIs and tools within compatible development environments. It acts as an intermediary that translates Mercado Pago resources into executable functions (tools) that AI applications can invoke to perform actions and automate flows. The server simplifies integration, enables using documentation to implement or improve code, and optimizes operations through natural language interactions without manual implementations.
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
A Model Context Protocol server for Wix AI tools
Related MCP Servers
- FlicenseNot gradedqualityFmaintenanceThis server implements the Model Context Protocol to facilitate meaningful interaction and understanding development between humans and AI through structured tools and progressive interaction patterns.57
- AlicenseCqualityDmaintenanceA simple server implementing the Model Context Protocol (MCP) that echoes messages back, designed for testing MCP clients.12MIT
- FlicenseNot gradedqualityDmaintenanceA basic Model Context Protocol server implementation that demonstrates core functionality including tools and resources for AI chat applications.
- AlicenseDqualityDmaintenanceA minimal Model Context Protocol server in TypeScript that demonstrates MCP-compliant resources and tools for LLMs, featuring simple resources and a basic tool that echoes messages or returns greetings.15Apache 2.0
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/jhgaylor/express-mcp-server-echo'
If you have feedback or need assistance with the MCP directory API, please join our Discord server