Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Product Agent MCP Serverlist all products in the Electronics category"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
MCP + LangGraph Product Agent (Test Task)
This repo implements:
MCP server (FastMCP, stdio) with product tools
LangGraph agent that connects to the MCP server via stdio subprocess
FastAPI endpoint to chat with the agent
Dockerfile + docker-compose
3+ tests
Project structure
Run with Docker Compose (recommended)
API будет доступен на:
http://localhost:8000/docsendpoint:
POST http://localhost:8000/api/v1/agent/query
Example request:
Run locally
Tests
Notes
MCP server runs via stdio (
python app/mcp_server/products_server.py) and is spawned by the FastMCPClient(...)inside the agent.The agent uses a mock LLM (rule-based) that outputs a JSON plan, then executes the plan by calling MCP tools + custom tools.