MCP.so
Sign In
Servers

Nest Llm Argent

@luis1232023

Stdio Mcp Server 转为 RestFul,轻松部署与 Web 服务集成, mcp gateway

Overview

What is Nest Llm Argent?

Nest Llm Argent is an MCP (Model Context Protocol) server that acts as a forwarding layer to integrate MCP tools with existing HTTP‑based web services. It aggregates multiple MCP servers and exposes a unified HTTP API for large language model (LLM) interactions, making it easier to embed MCP capabilities into existing NestJS or other web backends.

How to use Nest Llm Argent?

The recommended deployment method is to bundle each MCP Server as a private npm package, install it with npm install, and configure integration via a mcp.config.json file. The server provides predefined HTTP endpoints (e.g., POST /api/mcp/tools, POST /api/mcp/agent) that can be called to list tools, invoke tools, access resources, or run an LLM agent.

Key features of Nest Llm Argent

  • Bridges MCP’s client‑server protocol with standard HTTP APIs
  • Aggregates multiple MCP servers under a single HTTP endpoint
  • Supports almost all major LLM providers
  • Uses private npm packages for easy version control and deployment
  • Standardized REST endpoints for tools, resources, prompts, and agents

Use cases of Nest Llm Argent

  • Embed MCP tools into an existing NestJS application without rewriting the MCP layer
  • Provide a unified API gateway for multiple MCP servers behind a corporate firewall
  • Enable legacy web services to call LLM agents through simple HTTP POST requests
  • Centrally manage and version‑control MCP servers via a private npm registry

FAQ from Nest Llm Argent

What types of MCP servers can be integrated?

The server currently supports MCP servers using the stdio transport. SSE (Server‑Sent Events) support is planned for a future release.

How are MCP servers configured and deployed?

MCP servers are packaged as private npm packages and installed via npm install. A mcp.config.json file defines the paths and arguments for each server, allowing centralized management.

Does the server handle authentication or authorization?

— (Not mentioned in the README.)

Where does the MCP server data (tools, resources, prompts) reside?

Data lives in the individual MCP servers that are integrated. Nest Llm Argent acts as a proxy and does not store the data itself.

What HTTP methods and endpoints are available?

All endpoints use HTTP POST. The main ones are /api/mcp/tools, /api/mcp/functools, /api/mcp/tools/call, /api/mcp/resources, /api/mcp/prompts, /api/mcp/all, and /api/mcp/agent.

More from AI & Agents