NestJS MCP Server - Model Context Protocol Example
@LiusDev
NestJS MCP Server - Model Context Protocol Example について
This repository demonstrates a NestJS implementation of the Model Context Protocol (MCP) with a microservice architecture.
基本情報
設定
以下の設定を使って、このサーバーを MCP 対応クライアントに追加してください。
{
"mcpServers": {
"nestjs-mcp-server": {
"type": "http",
"url": "http://localhost:3000/sse"
}
}
}ツール
ツールは検出されませんでした
ツールは README から自動的に抽出されます。メンテナーは ## Tools という見出しの下に記載することで、このタブに反映できます。
概要
What is NestJS MCP Server - Model Context Protocol Example?
This repository demonstrates a NestJS implementation of the Model Context Protocol (MCP) with a microservice architecture. It comprises two services: an MCP server that provides time context functions for LLMs, and an MCP backend client that uses LangChain.js and the MCP client SDK to connect to the server. It is intended for developers building context-aware LLM applications with NestJS.
How to use NestJS MCP Server - Model Context Protocol Example?
Install Node.js 20+, clone the repo, run npm install, copy .env.example to .env and add your OpenAI API key. Start both services using npm run start:dev mcp-server and npm run start:dev mcp-backend. Send a POST request to http://localhost:3001 with a JSON body containing a message field (e.g., "What time is it in Viet Nam?") to receive the current time.
Key features of NestJS MCP Server - Model Context Protocol Example
- Provides current time context to language models via MCP
- Supports connecting to multiple MCP servers simultaneously
- Uses Server-Sent Events (SSE) transport with reconnection options
- Includes LangChain.js adapter integration for tool calling
- Tool name prefixing to avoid conflicts with multiple servers
Use cases of NestJS MCP Server - Model Context Protocol Example
- Retrieving the current time for any timezone through an LLM query
- Demonstrating MCP integration with a NestJS microservice architecture
- Serving as a reference for building custom MCP servers and clients
- Testing connections to multiple MCP servers in a single application
FAQ from NestJS MCP Server - Model Context Protocol Example
What are the runtime requirements?
Node.js version 20 or higher and npm are required.
How do I start the services?
Use npm run start:dev mcp-server for the MCP server and npm run start:dev mcp-backend for the backend.
What transport does the MCP server use?
The MCP server uses Server-Sent Events (SSE) transport, with configuration options for reconnection.
What API keys are needed?
An OpenAI API key must be provided in the .env file under OPENAI_API_KEY.
Can I connect to multiple MCP servers?
Yes. You can configure additional servers in McpClientModule.register with unique keys and ports. The client fetches tools from all configured servers.
「その他」の他のコンテンツ
MCP Go 🚀
mark3labsA Go implementation of the Model Context Protocol (MCP), enabling seamless integration between LLM applications and external data sources and tools.
Inbox Zero AI
elie222The world's best AI personal assistant for email. Open source app to help you reach inbox zero fast.
Unity MCP ✨
justinpbarnettUnity MCP acts as a bridge between AI assistants and your Unity Editor. Give your LLM tools to manage assets, control scenes, edit scripts, and automate tasks within Unity.

Sequential Thinking
modelcontextprotocolModel Context Protocol Servers
Nginx UI
0xJackyYet another WebUI for Nginx
コメント