Rize.io MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CACHE_TTL | No | Cache TTL in ms | 300000 |
| LOG_LEVEL | No | Logging level (error, warn, info, debug) | info |
| RIZE_API_KEY | Yes | Your Rize.io API key | |
| RATE_LIMITING | No | Enable rate limiting | true |
| CACHE_MAX_SIZE | No | LRU cache size | 1000 |
| RATE_LIMIT_MAX | No | Max requests per window | 100 |
| RATE_LIMIT_WINDOW | No | Rate limit window in ms | 60000 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_current_userD | – |
| get_productivity_metricsD | – |
| get_focus_sessionsD | – |
| get_analytics_reportD | – |
| list_projectsD | – |
| create_projectD | – |
| get_productivity_summaryD | – |
| health_checkD | – |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 8 tools
Tools like get_productivity_metrics and get_productivity_summary are likely overlapping, causing potential confusion. get_focus_sessions could also be related to productivity. However, other tools like create_project, list_projects, get_current_user, and health_check are distinct. Without descriptions, ambiguity is moderate.
Most tools follow a verb_noun pattern (get_*, create_*, list_*), but health_check breaks the pattern (noun_noun). Also, list_projects uses plural while create_project uses singular. This mixed convention is readable but inconsistent.
8 tools is an appropriate number for a productivity/analytics server. It covers core functionalities without being overwhelming or too sparse.
The domain appears to be project and productivity management. The set includes create and list for projects but lacks update/delete. For productivity, it only has get endpoints (sessions, metrics, summary) but no create or modify actions. This leaves notable gaps in CRUD coverage.