eodly-mcp
Server Details
Read your team's end-of-day reports and roster from Eodly.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- layergen/eodly-mcp
- GitHub Stars
- 0
- Server Listing
- Eodly MCP server
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.6/5 across 4 of 4 tools scored. Lowest: 2.1/5.
Each tool has a clear, distinct purpose: retrieving a single report, listing reports, listing the team roster, and identifying the API key. No overlap in functionality or ambiguity in selection.
All tools follow a verb_noun pattern (get_report, list_reports, list_team) except whoami, which is a single verb command. This is a minor deviation but standard and recognizable, so consistency is high.
Four tools is well-scoped for a read-only EOD report and team management server. Each tool provides a necessary, non-redundant function without bloat.
The server covers the full read surface for its domain: listing reports, retrieving report details, listing team members, and authenticating the API key. No obvious missing operations for a read-only reports/team API.
Available Tools
4 toolsget_reportAInspect
Get the full structured content of one end-of-day report by id (KPI status, shipped, silent, slipping, blockers). Requires the reports:read scope.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The report UUID. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the transparency burden. It does add meaningful context: the permission scope required and the fields found in the full content. However, it doesn't disclose error behavior, response format, or explicitly state that this is a read-only operation. The term 'Get' implies read-only, but more explicit disclosure would be better given the absent annotations.
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 whole description is one well-formed sentence that front-loads the action and resource, then packs the field details and authentication requirement. Every word adds value, with no redundancy or filler.
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 tool with a single parameter and no output schema, the description gives enough context via the field list and auth scope. It could be slightly more complete by clarifying returned structure or error cases, but given the tools rule set, it is close to sufficient.
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 fully covers the single parameter 'id' with 'The report UUID.' The description's 'by id' only restates the schema, adding no new semantic detail. Schema description coverage is 100%, so the baseline of 3 is appropriate.
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 action and resource: 'Get the full structured content of one end-of-day report by id'. It also lists the report components (KPI status, shipped, silent, slipping, blockers), and the singular 'one...by id' differentiates it from the sibling tool list_reports.
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 conveys that this is for retrieving a single report by its id, and it mentions the 'reports:read' scope requirement. It does not explicitly name an alternative for listing reports, but the 'by id' phrasing gives a clear invocation context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_reportsAInspect
List recent end-of-day reports for the key's organization, most recent first. Each report summarizes who shipped, who is silent, and who is slipping. Requires the reports:read scope.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max reports to return (default 14). |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description discloses the required auth scope (reports:read) and ordering (most recent first), adding useful behavioral context. It doesn't mention error cases or pagination behavior, but the description covers the key aspects for a read-only list 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?
Two clear sentences: first states purpose and ordering, second summarizes content and auth scope. No wasted wording, front-loaded.
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 list tool with one well-defined parameter and no output schema, the description covers purpose, ordering, auth scope, and content summary. It lacks explicit mention of pagination or error handling but is sufficient for a read-only list endpoint. The sibling tools are clearly distinct, so context is adequate.
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 schema already fully documents the single parameter 'limit' with min, max, and default. The description adds no additional parameter context beyond the schema's own description, so it meets the baseline but adds no extra value.
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 'List recent end-of-day reports' with a specific resource and scope ('for the key's organization'), and distinguishes it from siblings like get_report (single report) and list_team (teams). The verb 'List' and 'most recent first' provide precise purpose.
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 clearly indicates this is for listing reports, contrasting with siblings like get_report (single) and list_team (teams), so the usage context is clear. However, it does not explicitly state when not to use it or direct to alternatives, though the sibling names make it obvious.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_teamAInspect
List the team roster for the key's organization (name, role, department, active). Personal contact details are omitted. Requires the team:read scope.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so the description carries the burden. It states the scope requirement (team:read), what is included and omitted, making behavior transparent. However, it does not mention any additional behavioral traits like rate limits or failure modes, but for a simple read operation this is adequate.
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 extremely concise: one sentence conveying purpose, contents, omissions, and required scope. Every word earns its place.
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 zero-parameter read-only tool with no output schema, the description is complete. It states purpose, fields, exclusions, and auth scope. Slight missing detail on output format but not essential given simplicity.
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 tool has zero parameters, so the description cannot add parameter information. With schema coverage at 100% and no params, the baseline for parameter semantics is 4 per rubric, as nothing needed to be documented.
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 lists the team roster for the key's organization, specifying included fields (name, role, department, active) and omitted details (personal contact). This distinguishes it from siblings like get_report and list_reports which focus on reports.
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 in contexts where team roster information is needed, but does not explicitly elaborate on when to use this tool versus alternatives (e.g., when needing report data use get_report/list_reports). Given the sibling names, the context is clear but not fully explicit about alternative tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
whoamiCInspect
Identify the calling Eodly API key: the organization it belongs to and the scopes it holds.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No information about side effects, permissions, or read-only nature is disclosed. The description only states what it identifies, not what happens during execution or what might be required.
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, concise sentence that conveys the core function without extra fluff. However, the presence of unclear terms ('Ealling Eodly') slightly detracts from overall effectiveness.
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 simplicity of the tool (no parameters, no output schema), the description should clearly state the purpose and expected outcome. It mentions identifying organization and scopes, but the unclear wording and lack of context about the calling entity or return format make it incomplete.
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?
With zero parameters in the schema, there is nothing to add for parameter semantics. The baseline is 4, and the description does not introduce any irrelevant parameter information.
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 attempts to state the tool's purpose ('Identify the... API key'), but the phrase 'Ealling Eodly' is unclear and likely a typo for 'calling entity', reducing clarity about what exactly is identified.
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 like 'get_report' or 'list_team'. It does not mention typical scenarios or conditions for invocation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables submitting team check-ins to Steady (app.steady.space) by automating the web form through login, team discovery, and check-in submission with previous/next/blockers fields.52
- AlicenseAqualityDmaintenanceProvides read-only access to Nolio training data including planned workouts, completed sessions, metrics, records, and notes.83MIT
- FlicenseAqualityCmaintenanceAutomatically collects daily report data from KPI systems using browser automation and Google OAuth login. Generates structured Markdown reports for specified date ranges with persistent session management.6
- FlicenseNot gradedqualityBmaintenanceEnables querying sprint board capacity and task data for a team, allowing Claude to retrieve person tasks, sprint breakdowns, and capacity reports.1
Your Connectors
Sign in to create a connector for this server.