@eodly/mcp
An MCP server for Eodly. Lets any
MCP client (Claude, Cursor, and others) read your team's end-of-day reports and
roster from Eodly, so you can ask your assistant "what did my team ship today?" and
have it answer from the real data.
It is a thin, read-only wrapper over the Eodly public API,
authenticated with an Eodly API key.
Get an API key
- Sign in to Eodly as a founder or lead.
- Open Settings > Developer > API keys and create a key.
- Copy the secret (
eodly_sk_...). It is shown once.
Full guide: https://eodly.io/developers
Use it
Add it to your MCP client config. Example for Claude Desktop
(claude_desktop_config.json) or Cursor (.cursor/mcp.json):
{
"mcpServers": {
"eodly": {
"command": "npx",
"args": ["-y", "@eodly/mcp"],
"env": { "EODLY_API_KEY": "eodly_sk_your_key_here" }
}
}
}
That is it. No install step: npx fetches and runs the package.
Tools
whoami | any | The organization the key belongs to and its scopes. |
list_reports | reports:read | Recent end-of-day report summaries (optional limit, 1-50). |
get_report | reports:read | The full structured content of one report by id. |
list_team | team:read | The team roster (names, roles, departments). |
A key only carries the scopes you granted it when you created it.
Configuration
EODLY_API_KEY | yes | none |
EODLY_API_BASE | no | https://eodly.io/api/v1 |
Links
License
MIT