mcp-agents

hanpinglim/mcp-agents

3.1

If you are the rightful owner of mcp-agents and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

MCP Agents is a service that integrates OpenAI's Agents SDK with an MCP server, providing a robust platform for developing and deploying AI-driven applications.

MCP Agents

MCP-enabled agent service using OpenAI’s Agents SDK.

Features

  • OpenAI Agent + MCP server integration
  • Filesystem MCP (sandboxed)
  • FastAPI HTTP endpoint for other apps/projects
  • .env for secrets (API keys, OAuth creds)

Quickstart

git clone https://github.com/hanpinglim/mcp-agents.git
cd mcp-agents
py -3.12 -m venv .venv
.\.venv\Scripts\activate
pip install -r requirements.txt
cp .env.example .env   # add your keys
uvicorn app.serve:app --reload