We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ebowman/rescuetime-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•449 B
"""RescueTime MCP Server package.
Copyright (c) 2025 Eric Bowman
This software is licensed under the MIT License.
See LICENSE file in the project root for full license text.
"""
__version__ = "0.1.0"
__author__ = "Eric Bowman"
__email__ = "ebowman@boboco.ie"
__description__ = "FastMCP server for RescueTime API integration"
from .client import RescueTimeClient
from .server import create_server
__all__ = ["RescueTimeClient", "create_server"]