We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/impure0xntk/mcp-wakapi'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
README.md•602 B
# Wakapi SDK
This is a Python SDK for interacting with the Wakapi API.
This repository is unofficial. Use at your own risk.
## Installation
```bash
pip install wakapi_sdk
```
## Usage
```python
from wakapi_sdk import WakapiClient, WakapiConfig
config = WakapiConfig(base_url="https://wakapi.example.com", api_key="your_api_key", api_path="/compat/wakatime/v1")
client = WakapiClient(config)
# Get stats
stats = await client.get_stats("last_7_days")
print(stats)
```
## Development
To install dependencies:
```bash
uv sync
```
To run tests:
```bash
pytest
```
## License
Apache License 2.0