We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/cdmx-in/goodday-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
live_get_goodday_project_tasks.py•457 B
import asyncio
from goodday_openwebui_complete_tool import Tools
async def main():
tools = Tools()
# Optionally set your API key here if not using env var
# tools.valves.api_key = "your_goodday_api_token"
# Call the function with your live parameters
result = await tools.get_goodday_project_tasks(
project_name="orion" # Change to your project name
)
print(result)
if __name__ == "__main__":
asyncio.run(main())