├── .env.example ├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.MD ├── main.py ├── requirements.txt └── servers_config.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/.env.example -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/README.MD -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/requirements.txt -------------------------------------------------------------------------------- /servers_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/3choff/mcp-chatbot/HEAD/servers_config.json --------------------------------------------------------------------------------