MoCo MCP Server
Serves as the runtime environment for the MCP server, providing access to the MoCo API for time tracking, project management, and presence monitoring functions.
Used to implement the MCP server with full type safety, ensuring reliable integration with the MoCo API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MoCo MCP Servershow my time entries for this week"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
📊 MOCO MCP Server
A Model Context Protocol (MCP) server that provides employee read access to the MOCO API for time tracking, project management, holiday tracking, and presence monitoring.
⚡ Quick Start
npx -y @niondigital/moco-mcpThat's it! The server will start and be ready to connect to your MCP client.
Related MCP server: Motion MCP Server
🚀 Installation
Prerequisites
Node.js ≥ 18.0.0
MOCO account with API access
MOCO API key and subdomain
MCP Client Integration
Add to your Claude Desktop claude_desktop_config.json file:
MacOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"moco": {
"command": "npx",
"args": ["-y", "@niondigital/moco-mcp"],
"env": {
"MOCO_API_KEY": "your-moco-api-key",
"MOCO_SUBDOMAIN": "your-subdomain"
}
}
}
}Add to your Cursor settings:
MacOS: ~/Library/Application Support/Cursor/User/settings.json
Windows: %APPDATA%\Cursor\User\settings.json
Linux: ~/.config/Cursor/User/settings.json
{
"mcpServers": {
"moco": {
"command": "npx",
"args": ["-y", "@niondigital/moco-mcp"],
"env": {
"MOCO_API_KEY": "your-moco-api-key",
"MOCO_SUBDOMAIN": "your-subdomain"
}
}
}
}Add to your Windsurf MCP configuration:
{
"mcpServers": {
"moco": {
"command": "npx",
"args": ["-y", "@niondigital/moco-mcp"],
"env": {
"MOCO_API_KEY": "your-moco-api-key",
"MOCO_SUBDOMAIN": "your-subdomain"
}
}
}
}Add the MCP server to Claude Code:
claude mcp add -e MOCO_API_KEY="your-moco-api-key" -e MOCO_SUBDOMAIN="your-subdomain" moco -- npx -y @niondigital/moco-mcpConfigure Gemini CLI with MCP support:
{
"mcpServers": {
"moco": {
"command": "npx",
"args": ["-y", "@niondigital/moco-mcp"],
"env": {
"MOCO_API_KEY": "your-moco-api-key",
"MOCO_SUBDOMAIN": "your-subdomain"
}
}
}
}Go to
Kiro>MCP ServersAdd new MCP server by clicking
+ AddPaste the configuration below:
{
"mcpServers": {
"moco": {
"command": "npx",
"args": [
"-y",
"@niondigital/moco-mcp"
],
"env": {
"MOCO_API_KEY": "your-moco-api-key",
"MOCO_SUBDOMAIN": "your-subdomain"
},
"disabled": false,
"autoApprove": []
}
}
}
Click
Saveto apply changes
Go to
Program(right side) >Install>Edit mcp.jsonPaste the configuration below:
{
"mcpServers": {
"moco": {
"command": "npx",
"args": ["-y", "@niondigital/moco-mcp"],
"env": {
"MOCO_API_KEY": "your-moco-api-key",
"MOCO_SUBDOMAIN": "your-subdomain"
}
}
}
}Click
Saveto apply changesToggle MCP server on/off from the right hand side (under
Program) or by clicking the plug icon at the bottom of the chat box
🔑 MOCO API Setup
Getting Your API Credentials
Log into your MOCO account
Navigate to API settings:
Go to Profile → Integrations
Or visit:
https://niondigital.mocoapp.com/profile/integrations
Copy the listed API key
Note your subdomain:
From your MOCO URL:
https://yourcompany.mocoapp.comYour subdomain is:
yourcompany
Environment Variables
You can set environment variables in several ways:
Option 1: System Environment Variables
export MOCO_API_KEY="your-moco-api-key"
export MOCO_SUBDOMAIN="your-subdomain"Option 2: .env File (for local development)
MOCO_API_KEY=your-moco-api-key
MOCO_SUBDOMAIN=your-subdomainOption 3: MCP Client Configuration (recommended)
Use the env section in your MCP client configuration as shown above.
🛠️ Available Tools
Tool | Description | Parameters |
| Get activities within a date range with summation and optional project filtering |
|
| List all assigned projects or search by query |
|
| Get all tasks for a specific assigned project |
|
| Get holiday overview for a year with calculations |
|
| Get presence data within a date range with daily summaries |
|
| Get sick days overview for a year with calculations |
|
| Get public holidays for a year with working days calculations |
|
🎯 Available Prompts
The MoCo MCP server provides 8 intelligent prompts that orchestrate multiple tools to deliver comprehensive insights:
Prompt | Description | Key Parameters |
| Generates detailed weekly time tracking report with project breakdown |
|
| Assists with vacation planning by analyzing available days and holidays |
|
| Analyzes work habits and provides productivity recommendations |
|
| Creates comprehensive business reports with trends and metrics |
|
| Evaluates work-life balance with personalized recommendations |
|
| Detailed project time analysis with efficiency metrics |
|
| Team capacity planning with absence and resource analysis |
|
| Compliance check for working time regulations |
|
Prompt Examples
Weekly Time Report:
{
"name": "weekly_time_report",
"arguments": {
"week_start": "2024-01-15",
"include_billable_analysis": true
}
}Vacation Planning:
{
"name": "vacation_planning_assistant",
"arguments": {
"planned_start_date": "2024-07-15",
"planned_end_date": "2024-07-29"
}
}Work-Life Balance Analysis:
{
"name": "smart_work_life_balance_advisor",
"arguments": {
"analysis_weeks": 6,
"target_hours_per_week": 40
}
}Compliance Check:
{
"name": "work_hours_compliance_check",
"arguments": {
"check_period": "last_month",
"max_weekly_hours": 48,
"max_daily_hours": 10
}
}📝 Tool Examples
Get Activities
Filter all activities in a date range:
{
"name": "get_activities",
"arguments": {
"startDate": "2024-01-01",
"endDate": "2024-01-31"
}
}Filter activities for a specific project:
{
"name": "get_activities",
"arguments": {
"startDate": "2024-01-01",
"endDate": "2024-01-31",
"projectId": 123456
}
}Sample Output:
Activities from 2024-01-01 to 2024-01-31:
2024-01-15:
Project 123 (Website Redesign):
Task 456 (Frontend Development): 4.5h (4:30)
Task 789 (Backend API): 3.25h (3:15)
Project total: 7.75h (7:45)
Daily total: 7.75h (7:45)
Grand total: 7.75h (7:45)Get User Projects
List all assigned projects:
{
"name": "get_user_projects",
"arguments": {}
}Search projects:
{
"name": "get_user_projects",
"arguments": {
"query": "website"
}
}Get User Project Tasks
{
"name": "get_user_project_tasks",
"arguments": {
"projectId": 123456
}
}Get User Holidays
{
"name": "get_user_holidays",
"arguments": {
"year": 2024
}
}Sample Output:
Holiday overview for 2024:
Taken holiday days:
- 2024-03-15: 1.0 day
- 2024-04-22: 0.5 day
- 2024-07-08: 1.0 day
Summary:
- Taken vacation: 2.5 days
- Annual entitlement: 25 days
- Utilization: 10% (2.5/25)
- Remaining vacation: 22.5 daysGet User Presences
{
"name": "get_user_presences",
"arguments": {
"startDate": "2024-01-01",
"endDate": "2024-01-07"
}
}Sample Output:
Presences from 2024-01-01 to 2024-01-07:
Daily presences:
- 2024-01-01: 8.25h (8:15)
- 2024-01-02: 7.5h (7:30)
- 2024-01-03: 8.0h (8:00)
Grand total: 23.75h (23:45)
Statistics:
- Working days: 3
- Average per day: 7.92h (7:55)Get User Sick Days
{
"name": "get_user_sick_days",
"arguments": {
"year": 2024
}
}Get Public Holidays
{
"name": "get_public_holidays",
"arguments": {
"year": 2024
}
}Sample Output:
Public holidays for 2024:
Holiday dates:
- 2024-01-01: New Year's Day
- 2024-04-01: Good Friday
- 2024-04-03: Easter Monday
- 2024-05-01: Labor Day
- 2024-05-09: Ascension Day
- 2024-05-20: Whit Monday
- 2024-10-03: German Unity Day
- 2024-12-25: Christmas Day
- 2024-12-26: Boxing Day
Summary:
- Total public holidays: 9 days
- Approximate working days: 251 days🔧 Advanced Configuration
If you want to run from source:
git clone https://github.com/niondigital/moco-mcp.git
cd moco-mcp
npm install
npm run build
npm startThen configure your MCP client to use the local path:
{
"mcpServers": {
"moco": {
"command": "node",
"args": ["/path/to/moco-mcp/dist/index.js"],
"env": {
"MOCO_API_KEY": "your-moco-api-key",
"MOCO_SUBDOMAIN": "your-subdomain"
}
}
}
}FROM node:18-alpine
WORKDIR /app
RUN npm install -g @niondigital/moco-mcp
ENV MOCO_API_KEY=""
ENV MOCO_SUBDOMAIN=""
CMD ["@niondigital/moco-mcp"]🔍 Troubleshooting
Common Issues
❌ Authentication Error:
API authentication failed. Please check MOCO_API_KEY.Verify your API key is correct and has necessary permissions
Check if the API key is properly set in environment variables
Ensure the key hasn't expired
❌ Subdomain Error:
MOCO_SUBDOMAIN should only contain the subdomain nameUse only the subdomain part:
company(notcompany.mocoapp.com)Remove
https://and.mocoapp.comfrom the subdomain
❌ Node.js Version Error:
This package requires Node.js >= 18.0.0Update Node.js to version 18 or higher
Check your version:
node --version
❌ npx Connection Issues:
Error: Cannot find module '@niondigital/moco-mcp'Ensure you have internet connection
Try:
npx --yes @niondigital/moco-mcpClear npx cache:
npx clear-npx-cache
❌ MCP Client Not Finding Tools:
Restart your MCP client after configuration changes
Check that environment variables are properly set
Verify JSON configuration syntax is correct
Debug Mode
For debugging, you can run the server with additional logging:
NODE_ENV=development npx -y @niondigital/moco-mcpTesting Connection
You can test the server manually:
echo '{"jsonrpc": "2.0", "id": 1, "method": "tools/list"}' | npx -y @niondigital/moco-mcp🌟 Features
✅ Read-only Access: Safe API integration with no data modification
🔄 Automatic Pagination: Handles large datasets seamlessly
📊 Smart Aggregation: Automatic summation by date, project, and task
🎯 Project Filtering: Filter activities by specific projects
🧩 Comprehensive Tools: 7 specialized tools for different use cases
🎯 Intelligent Prompts: 8 AI-powered prompts for complex analysis and insights
🌐 Multi-Client Support: Works with all major MCP clients
🤝 Contributing
Fork the repository
Create a feature branch:
git checkout -b feature-nameMake your changes and add tests
Run tests:
npm testSubmit a pull request
📄 License
MIT License - see LICENSE file for details.
🆘 Support
MOCO API Issues: MOCO API Documentation
MCP Protocol: MCP Documentation
This Package: GitHub Issues
Available Tools
7 toolsget_activitiesB
Get all activities within a date range with automatic summation by date, project, and task. Optionally filter by project ID.
| Name | Required | Description | Default |
|---|---|---|---|
| startDate | Yes | Start date in ISO 8601 format (YYYY-MM-DD) | |
| endDate | Yes | End date in ISO 8601 format (YYYY-MM-DD) | |
| projectId | No | Optional project ID to filter activities for a specific project |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It discloses key behavioral traits: it retrieves activities, applies automatic summation by date/project/task, and allows optional project filtering. However, it doesn't cover aspects like pagination, rate limits, authentication needs, or error handling, which are important for a read operation with potential large datasets.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is appropriately sized with two sentences: the first states the core purpose and key feature (automatic summation), and the second adds optional filtering. It's front-loaded with essential information and avoids redundancy, though it could be slightly more structured (e.g., clarifying the summation output).
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (read operation with summation and filtering), no annotations, and no output schema, the description is moderately complete. It covers the main action and parameters but lacks details on output format (e.g., how summation is presented), error cases, or performance considerations, which would help an agent use it effectively.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents the parameters (startDate, endDate, projectId). The description adds minimal value beyond the schema by mentioning 'date range' and 'filter by project ID,' but doesn't provide additional semantics like format nuances or usage tips. This meets the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get all activities within a date range with automatic summation by date, project, and task.' It specifies the verb ('Get'), resource ('activities'), and key behavior ('automatic summation'). However, it doesn't explicitly differentiate from sibling tools like 'get_user_projects' or 'get_user_project_tasks', which appear related but serve different purposes.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage by mentioning 'within a date range' and 'Optionally filter by project ID,' suggesting it's for retrieving summarized activity data. However, it lacks explicit guidance on when to use this tool versus alternatives (e.g., vs. 'get_user_projects' for project details) or any exclusions (e.g., not for real-time data). This leaves some ambiguity in context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_public_holidaysB
Get all public holidays for a specific year with daily breakdown and total calculations
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Year to retrieve public holidays for (e.g., 2024) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions output details ('daily breakdown and total calculations'), which adds some behavioral context beyond basic retrieval. However, it lacks critical information like whether this is a read-only operation, potential rate limits, authentication requirements, or data source specifics, leaving significant gaps for a tool with no annotation coverage.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose ('Get all public holidays for a specific year') and adds valuable output details without redundancy. Every word earns its place, making it appropriately sized and well-structured for quick comprehension.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 parameter, no nested objects) and high schema coverage, the description is minimally adequate. However, with no annotations and no output schema, it should provide more behavioral context (e.g., read-only nature, response format). The mention of 'daily breakdown and total calculations' helps but doesn't fully compensate for the lack of structured data.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the 'year' parameter fully documented in the schema (type, range, example). The description adds no additional parameter semantics beyond implying the year is used for retrieval. Since the schema does the heavy lifting, the baseline score of 3 is appropriate, as the description doesn't compensate but doesn't detract either.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get') and resource ('public holidays'), specifying the scope ('for a specific year') and output details ('daily breakdown and total calculations'). It distinguishes from sibling tools like 'get_user_holidays' by focusing on public rather than user-specific holidays. However, it doesn't explicitly contrast with all siblings, so it's not a perfect 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, exclusions, or compare it to sibling tools like 'get_user_holidays' for personal vs. public data. Without such context, an agent must infer usage from the tool name alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_holidaysB
Get all user holidays for a specific year with utilization calculations and remaining vacation days
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Year to retrieve holidays for (e.g., 2024) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It mentions 'utilization calculations and remaining vacation days' which adds some context about what the tool returns, but doesn't cover important aspects like whether this requires authentication, rate limits, pagination behavior, or error conditions. For a tool that presumably accesses user data, this is a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that communicates the core purpose without any wasted words. It's appropriately sized for a simple single-parameter tool and front-loads the essential information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read operation with 100% schema coverage but no annotations and no output schema, the description is adequate but incomplete. It explains what the tool returns ('utilization calculations and remaining vacation days') which partially compensates for the missing output schema, but doesn't provide enough behavioral context for a tool that likely requires authentication and returns potentially sensitive user data.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% with the single parameter 'year' well-documented in the schema. The description doesn't add any parameter-specific information beyond what's already in the schema. This meets the baseline of 3 when schema coverage is high and no additional parameter context is provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get all user holidays'), resource ('user holidays'), and scope ('for a specific year with utilization calculations and remaining vacation days'). It distinguishes from siblings like get_public_holidays (which likely lacks user-specific calculations) and get_user_sick_days (different type of time off).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, when not to use it, or how it differs from sibling tools beyond implicit scope differences. The agent must infer usage from tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_presencesC
Get user presences within a date range with daily aggregation and total calculations
| Name | Required | Description | Default |
|---|---|---|---|
| startDate | Yes | Start date in ISO 8601 format (YYYY-MM-DD) | |
| endDate | Yes | End date in ISO 8601 format (YYYY-MM-DD) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'daily aggregation and total calculations,' which adds some context about output behavior, but fails to address critical aspects like whether this is a read-only operation, potential rate limits, authentication requirements, or error conditions. For a data retrieval tool, this leaves significant gaps in understanding how it behaves.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose. It avoids redundancy and wastes no words, though it could be slightly more structured by separating purpose from behavioral details for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (2 parameters, no output schema, no annotations), the description is minimally adequate. It covers the basic purpose and hints at aggregation behavior, but lacks details on output format, error handling, or integration with sibling tools, leaving room for improvement in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the input schema fully documents both parameters (startDate and endDate) with their formats. The description adds no additional parameter semantics beyond what's in the schema, such as date range constraints or handling of invalid dates, meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get user presences within a date range with daily aggregation and total calculations.' It specifies the verb ('Get'), resource ('user presences'), and scope ('date range'), but doesn't explicitly differentiate from sibling tools like get_user_holidays or get_user_sick_days, which might also retrieve user-related data within date ranges.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, exclusions, or compare it to sibling tools such as get_user_holidays or get_user_sick_days, leaving the agent to infer usage based on tool names alone.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_projectsB
Get all projects assigned to the current user or search within assigned projects by name/description. If no query is provided, returns all assigned projects.
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Optional search query to find projects by name or description (case-insensitive) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the search functionality and case-insensitive behavior (implied from the schema), but lacks details on permissions, rate limits, pagination, or error handling. For a tool that likely interacts with user data, this is a significant gap in transparency, as it doesn't address potential constraints or side effects beyond basic operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is highly concise and well-structured, consisting of just two sentences that efficiently convey the tool's functionality and conditional behavior. Every sentence earns its place by providing essential information without redundancy, making it easy to parse and understand quickly.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (one optional parameter, no output schema, no annotations), the description is adequate but incomplete. It explains what the tool does and how the parameter affects output, but lacks details on return format, error cases, or integration with sibling tools. For a user-facing query tool, more context on results and limitations would enhance completeness, though it meets minimum viability.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'query' parameter well-documented in the schema itself. The description adds minimal value beyond the schema by reiterating the optional nature of the query and its effect on output. Since the schema already covers the parameter semantics comprehensively, the baseline score of 3 is appropriate, as the description doesn't provide additional meaningful context.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get all projects assigned to the current user or search within assigned projects by name/description.' It specifies the verb ('Get'), resource ('projects'), and scope ('assigned to the current user'), making it easy to understand. However, it doesn't explicitly differentiate from sibling tools like 'get_user_project_tasks', which focuses on tasks rather than projects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides some usage guidance by explaining the conditional behavior: 'If no query is provided, returns all assigned projects.' This implies that the tool can be used for both listing all projects and searching. However, it doesn't offer explicit when-to-use guidance compared to alternatives (e.g., when to use this vs. 'get_user_project_tasks' or other sibling tools), leaving the context somewhat implied rather than clearly defined.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_project_tasksA
Get all tasks for a specific assigned project by project ID. Only works for projects assigned to the current user.
| Name | Required | Description | Default |
|---|---|---|---|
| projectId | Yes | Project ID to retrieve tasks for |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It adds context about the restriction to 'projects assigned to the current user,' which is useful beyond the input schema. However, it lacks details on other behavioral traits such as response format, pagination, error handling, or rate limits, leaving gaps for a mutation-free but context-sensitive tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is front-loaded with the core purpose in the first sentence and adds a crucial restriction in the second. Both sentences earn their place by providing essential information without redundancy or fluff, making it highly efficient and well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (1 parameter, no output schema, no annotations), the description is mostly complete. It covers the purpose and key usage restriction. However, it lacks output details (e.g., what 'tasks' include, format) and could mention error cases (e.g., invalid project ID), leaving minor gaps for full contextual understanding.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the parameter 'projectId' fully documented in the schema. The description does not add any additional meaning or syntax details beyond what the schema provides (e.g., it doesn't explain what constitutes a valid project ID beyond the schema's 'exclusiveMinimum: 0'). Baseline 3 is appropriate as the schema handles the parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Get all tasks') and resource ('for a specific assigned project by project ID'), distinguishing it from sibling tools like 'get_user_projects' (which retrieves projects, not tasks) and 'get_activities' (which retrieves activities, not tasks). It precisely defines the tool's function without redundancy.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit context for when to use this tool: 'Only works for projects assigned to the current user.' This clarifies the prerequisite condition. However, it does not explicitly state when not to use it or name alternatives (e.g., if tasks for unassigned projects are needed), which prevents a perfect score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_user_sick_daysB
Get all user sick days for a specific year with daily breakdown and total calculations
| Name | Required | Description | Default |
|---|---|---|---|
| year | Yes | Year to retrieve sick days for (e.g., 2024) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool retrieves data with calculations, implying a read-only operation, but doesn't clarify permissions, rate limits, data freshness, or error conditions. For a tool with no annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core purpose and includes key details without waste. Every part of the sentence earns its place by specifying the action, resource, scope, and output characteristics.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's moderate complexity (retrieving and calculating sick days), lack of annotations, and no output schema, the description is adequate but incomplete. It covers the purpose and output characteristics but misses behavioral details like permissions or error handling. It's minimally viable for a read operation but could be more comprehensive.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with the 'year' parameter fully documented. The description adds context by specifying 'for a specific year' and mentioning 'daily breakdown and total calculations', which provides additional meaning about the output structure. However, it doesn't add syntax or format details beyond what the schema already provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose with a specific verb ('Get') and resource ('user sick days'), including scope details ('for a specific year with daily breakdown and total calculations'). It distinguishes from siblings by focusing on sick days rather than activities, holidays, presences, or projects. However, it doesn't explicitly differentiate from similar tools like 'get_user_holidays' beyond the resource name.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, exclusions, or comparisons with sibling tools like 'get_user_holidays' or 'get_user_presences', leaving the agent to infer usage context solely from the tool name and description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
7 tool updates
- First observed
get_activities - First observed
get_public_holidays - First observed
get_user_holidays - First observed
get_user_presences - First observed
get_user_project_tasks - First observed
get_user_projects - First observed
get_user_sick_days
TDQS
Each tool has a clearly distinct purpose targeting different resources (activities, holidays, presences, projects, tasks, sick days) with no overlap in functionality. The descriptions specify unique data retrieval operations, making misselection unlikely.
All tools follow a consistent 'get_<resource>' naming pattern using snake_case, with clear and predictable verb-noun structure. This uniformity makes the tool set easy to navigate and understand.
With 7 tools, the server is well-scoped for its apparent purpose of retrieving user-related work and absence data. Each tool serves a distinct and necessary function without redundancy, fitting a typical range for such a domain.
The tool set is read-only, covering retrieval of activities, holidays, presences, projects, tasks, and sick days, which is comprehensive for querying user data. However, it lacks write operations (e.g., create, update, delete) or broader management functions, creating notable gaps for full lifecycle coverage in a work management domain.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
A comprehensive Model Context Protocol (MCP) server that enables AI assistants to interact with yo…
Model Context Protocol server for the Apideck Unified API. Connect any MCP-compatible agent framework to 100+ accounting systems, HRIS platforms, file storage providers, and more through one integration. More information https://www.apideck.com/mcp-server
Model Context Protocol server for todo.vu task management and time tracking.
Model Context Protocol server for Studex tools, notifications, and profile integrations
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceEnables AI agents to manage OpenProject projects, work packages, activities, and wiki pages through the Model Context Protocol.-
- AlicenseBqualityCmaintenanceEnables natural language management of Motion tasks, projects, schedules, and more via the Model Context Protocol, integrating with LLMs like Claude and ChatGPT.10Apache 2.0
- AlicenseBqualityCmaintenanceEnables natural language management of Motion tasks, projects, schedules, and more by bridging the Motion API with LLMs through the Model Context Protocol.10Apache 2.0
- AlicenseNot gradedqualityBmaintenanceEnables LLM clients to interact with a mock HR system via the Model Context Protocol, supporting queries and workflows across leave, benefits, employee lifecycle, learning, performance, travel, expenses, policies, and FAQs.MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/niondigital/moco-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server