Skip to main content
Glama

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.

MCP client
Glama
MCP server

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.

100% free. Your data is private.
Tool DescriptionsB

Average 3.6/5 across 4 of 4 tools scored. Lowest: 2.1/5.

Server CoherenceA
Disambiguation5/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.

Naming Consistency4/5

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.

Tool Count5/5

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.

Completeness5/5

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 tools
get_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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYesThe report UUID.
Behavior3/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax reports to return (default 14).
Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters3/5

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.

Purpose5/5

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.

Usage Guidelines4/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior4/5

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.

Conciseness5/5

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.

Completeness4/5

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.

Parameters4/5

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.

Purpose5/5

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.

Usage Guidelines3/5

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.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Behavior1/5

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.

Conciseness4/5

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.

Completeness2/5

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.

Parameters4/5

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.

Purpose2/5

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.

Usage Guidelines1/5

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.

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.