Overview
The Corelayer MCP server lets AI agents access Corelayer through the Model Context Protocol (MCP). Agents can discover Corelayer groups, list issues, read issue details, inspect summaries, search organization memory, and use that context in their normal workflows. Use Corelayer MCP when you want an AI tool to answer questions like:- “What are the highest-priority open production issues right now?”
- “Search our Corelayer memory for previous decisions about this incident.”
- “Find issues in the workspace, then create tickets or daily summaries in my planning tool.”
For most hosted connectors, use the remote MCP endpoint:
Remote MCP
Remote MCP is the easiest way to connect a hosted AI agent or connector to Corelayer. The agent talks to Corelayer over HTTPS and authenticates with a Corelayer API key. Remote MCP requires an MCP host that supports HTTP MCP servers and bearer-token authentication. If your host only supports local stdio MCP servers, use the local package below. Use this connection shape in MCP clients that support remote HTTP servers:serverUrl instead of url, or collect the bearer token in
a separate authentication field. Use your host’s MCP configuration format, but
keep the same endpoint and authorization header.
Remote MCP currently exposes read-only tools. It does not expose close, reopen,
or bulk close operations.
Authentication
Create a dedicated API key for your MCP connector:How Connectors Find a Group
Most Corelayer tools are scoped to a group. A connector does not need to know thegroupId before setup.
The normal connector flow is:
- Call
corelayer.list_groups. - Let the agent pick the matching group by name, or ask the user to choose.
- Pass the selected group’s
idasgroupIdto group-scoped tools.
Available Remote Tools
Example Connector Workflows
Daily triage:Local MCP
Use local MCP when your AI coding agent runs MCP servers as local stdio processes. The local server is distributed as an npm package:Local Authentication
The local MCP server resolves credentials in this order:CORELAYER_API_KEY- the local CLI token from
~/.corelayer/config.json
CORELAYER_API_KEY because it is explicit, revocable, and easier to
audit.
Optional Local Default Group
If your local agent usually works in one Corelayer group, setCORELAYER_DEFAULT_GROUP so group-scoped tools can omit groupId:
corelayer.list_groups discovery flow instead of a
process-level default group.
Additional Local Tools
The local MCP package also exposes write tools for authenticated local agents:corelayer.bulk_close_issues requires explicit issue IDs, caps requests at 500
IDs, and never uses a select-all mutation.