├── .gitignore ├── README.md ├── agent.py ├── mcp_client ├── __init__.py ├── agent_tools.py ├── server.py └── util.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | venv/ 3 | __pycache__/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/basic-mcp/HEAD/README.md -------------------------------------------------------------------------------- /agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/basic-mcp/HEAD/agent.py -------------------------------------------------------------------------------- /mcp_client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/basic-mcp/HEAD/mcp_client/__init__.py -------------------------------------------------------------------------------- /mcp_client/agent_tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/basic-mcp/HEAD/mcp_client/agent_tools.py -------------------------------------------------------------------------------- /mcp_client/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/basic-mcp/HEAD/mcp_client/server.py -------------------------------------------------------------------------------- /mcp_client/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/basic-mcp/HEAD/mcp_client/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/livekit-examples/basic-mcp/HEAD/requirements.txt --------------------------------------------------------------------------------