We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/KeithHanson/clockify-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_server.py•353 B
#!/usr/bin/env python3
"""
Simple wrapper script to run the Clockify MCP server
This can be called directly without installation issues
"""
import sys
import os
# Add src directory to path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), 'src'))
# Now import and run
from clockify_mcp.server import run
if __name__ == "__main__":
run()