YearAtAGlance MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| YAAG_API_KEY | Yes | Your YearAtAGlance API key | |
| YAAG_API_URL | No | API base URL | https://yearataglance-backend-production.up.railway.app/api/v1 |
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 | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| yaag_list_eventsB | List all events from YearAtAGlance calendar. Optionally filter by year and/or category. |
| yaag_get_eventB | Get details of a specific event by its ID |
| yaag_create_eventB | Create a new event in the YearAtAGlance calendar. Dates should be in ISO 8601 format. |
| yaag_update_eventC | Update an existing event |
| yaag_delete_eventB | Delete an event from the calendar |
| yaag_get_heatmapA | Get heatmap data showing event density for each day of a year |
| yaag_list_categoriesA | List all categories in the YearAtAGlance calendar |
| yaag_get_categoryB | Get details of a specific category by its ID |
| yaag_create_categoryB | Create a new category for organizing events |
| yaag_update_categoryC | Update an existing category |
| yaag_delete_categoryA | Delete a category. Events in this category will become uncategorized. |
| yaag_ai_statusA | Check the status of the AI service in YearAtAGlance |
| yaag_ai_create_milestoneA | Use AI to create an event from natural language input. Example: 'My birthday on March 15th' or 'Team offsite next week' |
| yaag_ai_analyze_yearA | Get AI-powered analysis and insights for a specific year's events |
| yaag_ai_chatA | Chat with the AI assistant about your calendar, events, and schedule |
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 15 tools
Tools are clearly grouped into AI operations, category CRUD, and event CRUD, with no overlapping purposes. Each tool has a distinct function that is easy to differentiate.
All tools share the 'yaag_' prefix, but the AI tools (e.g., 'yaag_ai_chat') have a slightly different naming pattern compared to the CRUD tools (e.g., 'yaag_create_category'). Overall consistent but with minor deviation.
15 tools is appropriate for a calendar management server with AI features, covering creation, retrieval, updating, deletion, listing, and analysis without being excessive.
Full CRUD operations for events and categories are provided, along with AI analysis and heatmap visualization. Missing advanced features like bulk operations or search, but core workflows are well-covered.