npm @eodly/mcpstreamable-httpMITupdated 17d ago
Read your team's sourced end-of-day reports and roster from any MCP client, using an Eodly API key.
What can you do with eodly mcp?
Eodly MCP server
Read your team's sourced end-of-day reports and roster from any MCP client, using an Eodly API key.
Hosted endpoint: https://eodly.io/api/mcp (Streamable HTTP, nothing to install). Local: npx @eodly/mcp (stdio). Auth: set EODLY_API_KEY to an Eodly API key (eodly_sk_...) created in the app under Settings, Developer, API keys. Tools: whoami, list_reports, get_report, list_team. MCP Apps: report tools render as an interactive card in hosts that support the UI extension. Read-only, and scoped to one organization.
Eodly sends founders and team leads one sourced report every evening: who shipped, who is silent, who is slipping. Your team checks in from Slack, Telegram, Microsoft Teams, or Discord, and Eodly weighs each claim against the real work in GitHub and Linear. This server exposes those reports to MCP clients such as Claude and Cursor, so you can ask an agent "who is slipping this week?" and have it pull the sourced answer.
Read-only. It cannot change anything in your workspace.
Install
Hosted (recommended)
A remote Streamable HTTP endpoint, nothing to install:
https://eodly.io/api/mcp
Local (stdio)
npx @eodly/mcp
Configure
Create an API key in the Eodly app under Settings → Developer → API keys, then add the server to your client.
Claude Desktop (claude_desktop_config.json):
{
"mcpServers": {
"eodly": {
"command": "npx",
"args": ["-y", "@eodly/mcp"],
"env": { "EODLY_API_KEY": "eodly_sk_..." }
}
}
}
Cursor and other MCP clients use the same shape.
Tools
| Tool | What it does | Scope |
|---|---|---|
whoami |
Identify the key: which organization it belongs to and what scopes it holds | none |
list_reports |
Recent end-of-day report summaries, most recent first (limit, 1-50, default 14) |
reports:read |
get_report |
Full structured content of one report by id | reports:read |
list_team |
The team roster: names, roles, departments | team:read |
Interactive report card (MCP Apps)
list_reports and get_report ship an interactive view alongside their JSON. In a host that supports the MCP Apps UI extension (SEP-1865), the report renders as a card (who shipped, who's silent, who's slipping) instead of a wall of text. Hosts without the extension get the same JSON as before, so nothing breaks.
| Resource | ui://eodly/report.html |
| MIME type | text/html;profile=mcp-app |
| Capability | io.modelcontextprotocol/ui |
The view is fully self-contained (inline CSS and JS, no network access, no external assets) and declares an empty CSP allowlist. The hosted endpoint at https://eodly.io/api/mcp serves the identical view.
Environment
| Variable | Required | Default |
|---|---|---|
EODLY_API_KEY |
yes | none. An Eodly API key (eodly_sk_...) |
EODLY_API_BASE |
no | https://eodly.io/api/v1 |
Keys are organization-scoped and read-only. Revoke one at any time in the app.
Links
License
MIT. See LICENSE.
Install
Add eodly mcp to your client. Pick the one you use.
{
"servers": {
"mcp": {
"type": "http",
"url": "https://eodly.io/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @eodly/mcpcodex mcp add mcp -- npx -y @eodly/mcpamp mcp add mcp -- npx -y @eodly/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@eodly/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@eodly/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@eodly/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@eodly/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@eodly/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@eodly/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@eodly/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @eodly/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
3 tools
eodly mcp exposes 3 tools to a connected agent.
- list_reports
- Recent end-of-day report summaries, most recent first (`limit`, 1-50, default 14)
- get_report
- Full structured content of one report by id
- list_team
- The team roster: names, roles, departments
Score
82 / 100
Excellent
- Documentation22/25
- Maintenance25/25
- Trust16/20
- Capability4/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 9 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 0.2.1Latest | Aug 22, 2026 |
| 0.2.0 | Aug 22, 2026 |
| 0.1.2 | Aug 20, 2026 |