Easy8 MCP Server

Connect AI assistants to Easy8 — read and update projects, issues, and comments.

Remote serverstreamable-httpGo

What is the Easy8 MCP server?

Connect AI assistants to Easy8 — read and update projects, issues, and comments. That is what the easy8 mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

Connect your AI assistant directly to Easy8. The Easy8 MCP server lets Claude, Cursor, GitHub Copilot, and any other Model Context Protocol client read and update your projects, issues, and comments — using your own Easy8 permissions, against your own Easy8 instance.

The tools it exposes

The server publishes 11 tools. What each one is for:

  • Cursor — see Cursor setup
  • initialize — opens a session and returns server metadata and capabilities
  • ping — health check
  • Transport — Streamable HTTP
  • Authentication — API key in the X-Redmine-API-Key request header
  • easy8_projects_list — List visible projects. Filter by name or free-text query, paginate with limit / offset
  • easy8_issues_list — List visible issues. Filter by project, assignee, status (open / closed), subject, due-date period, or free-text query
  • easy8_issues_get — Fetch one issue by ID, including metadata, description, and comment count
  • easy8_issues_comments_list — List issue journal notes, newest first
  • easy8_issues_create — Create an issue. Subject and a project selector are required. Supports tracker, description, assignee, priority, status, dates, and custom fields
  • easy8_issues_update — Update an existing issue. Supports field edits and appending a new journal note via notes

What it needs from you

Configuration is passed through the environment: YOUR_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

You need three things: 1. An Easy8 instance you can reach from your AI client (cloud or self-hosted). 2. MCP enabled in Easy8 administration: Settings → AI → Enable MCP → Save. MCP is disabled by default. While disabled, /mcp returns 404 Not Found. 3. A personal Easy8 API key. Generate it from your Easy8 user profile. The MCP server uses standard Easy8 API authentication and

Getting it running

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

How it compares

This sits in the planning and project tracking group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Easy8's toolset — Cursor, initialize, ping and 8 more — is a fair guide to whether it matches your workflow. It is maintained by Easy8com; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Things to watch

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Easy8.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
Cursorsee [Cursor setup](#cursor).
initializeopens a session and returns server metadata and capabilities.
pinghealth check.
TransportStreamable HTTP
AuthenticationAPI key in the X-Redmine-API-Key request header
easy8_projects_listList visible projects. Filter by name or free-text query, paginate with limit / offset.
easy8_issues_listList visible issues. Filter by project, assignee, status (open / closed), subject, due-date period, or free-text query.
easy8_issues_getFetch one issue by ID, including metadata, description, and comment count.
easy8_issues_comments_listList issue journal notes, newest first.
easy8_issues_createCreate an issue. Subject and a project selector are required. Supports tracker, description, assignee, priority, status, dates, and custom fields.
easy8_issues_updateUpdate an existing issue. Supports field edits and appending a new journal note via notes.

Configuration

You need three things: 1. An Easy8 instance you can reach from your AI client (cloud or self-hosted). 2. MCP enabled in Easy8 administration: Settings → AI → Enable MCP → Save. MCP is disabled by default. While disabled, /mcp returns 404 Not Found. 3. A personal Easy8 API key. Generate it from your Easy8 user profile. The MCP server uses standard Easy8 API authentication and

VariableDescriptionRequired
YOUR_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Easy8 to Cursor.
  • Use Easy8 to initialize.
  • Use Easy8 to ping.

Frequently asked questions

It connects Easy8 to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (Cursor, initialize, ping, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Easy8 directly.