├── .gitignore ├── LICENSE ├── README.md ├── example ├── .env.example ├── README.md └── tools.py ├── podcast_maker ├── .env.example ├── README.md └── tools.py └── pr-reviewer ├── .env.example ├── README.md └── tools.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/README.md -------------------------------------------------------------------------------- /example/.env.example: -------------------------------------------------------------------------------- 1 | OPENWEATHERMAP_API_KEY=1234abcd 2 | -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/example/README.md -------------------------------------------------------------------------------- /example/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/example/tools.py -------------------------------------------------------------------------------- /podcast_maker/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/podcast_maker/.env.example -------------------------------------------------------------------------------- /podcast_maker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/podcast_maker/README.md -------------------------------------------------------------------------------- /podcast_maker/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/podcast_maker/tools.py -------------------------------------------------------------------------------- /pr-reviewer/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/pr-reviewer/.env.example -------------------------------------------------------------------------------- /pr-reviewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/pr-reviewer/README.md -------------------------------------------------------------------------------- /pr-reviewer/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cardea-mcp/servers/HEAD/pr-reviewer/tools.py --------------------------------------------------------------------------------