π¦
Agent Template
MCP server: Agent Template
0 installs
15 stars
Trust: 49 β Fair
Devtools
Installation
npx mcp-agent-templateAsk AI about Agent Template
Powered by Claude Β· Grounded in docs
I know everything about Agent Template. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
MCP Agent Template
A collection of minimal, production-ready starter projects for building multi-agent and retrieval-augmented AI workflows.
This agent includes three main components:
- mcp-docs-server: Exposes a folder of documents as a tool via REST API and optional MCP agent integration.
- website-qa-bot: Retrieval-Augmented Generation (RAG) Q/A bot for websites and documents, with Pinecone and OpenAI integration.
- multi-agent-workflow: Demonstrates multi-agent orchestration for collaborative AI tasks.
Projects Overview
1. mcp-docs-server
- FastAPI server to serve documents from a local folder.
- REST endpoints for listing and retrieving documents.
- Optional MCP integration via
fastmcpfor agent workflows.
2. website-qa-bot
- Upload text or PDF files, store embeddings in Pinecone.
- Semantic search and context-aware answers using OpenAI LLM.
- FastAPI backend with endpoints for ingestion and querying.
3. multi-agent-workflow
- Orchestrates multiple AI agents (Researcher, Summarizer, Planner).
- Demonstrates agent collaboration for solving tasks.
- OpenAI integration for summarization, mock mode available.
Setup
- Clone this repository and navigate to the desired project folder.
- Copy
.env.exampleto.envin each project and add your API keys. - Install dependencies for each project:
pip install -r requirements.txt - Run the server for each project (see individual README files for details).
File Tree
MCP Agent Template/
ββ mcp-docs-server/
β ββ app/
β β ββ server.py
β β ββ mcp_adapter.py
β β ββ docs/
β β β ββ README.md
β β β ββ sample-doc.md
β ββ requirements.txt
β ββ .env.example
β ββ README.md
ββ website-qa-bot/
β ββ app/
β β ββ main.py
β β ββ ingest.py
β β ββ query.py
β β ββ utils.py
β ββ requirements.txt
β ββ .env.example
β ββ README.md
ββ multi-agent-workflow/
β ββ app/
β β ββ agents.py
β β ββ orchestrator.py
β ββ requirements.txt
β ββ .env.example
β ββ README.md
