01
stdio transport, Bearer auth
The MCP server speaks stdio and authenticates against /api/v1/* with a Bearer token. The same key works for the VSCode extension. Revoke any time from Settings → Agents & API Access.
AI & Agents
The Lastest MCP server (@lastest/mcp-server) implements the Model Context Protocol over stdio. Any MCP-compatible agent - Claude Code, Cursor, Cline, Windsurf, or Claude Desktop - gets first-class tools to list, create, run, heal, and review tests in your Lastest instance.
What you get
01
The MCP server speaks stdio and authenticates against /api/v1/* with a Bearer token. The same key works for the VSCode extension. Revoke any time from Settings → Agents & API Access.
02
Repos, tests, functional areas, builds, diffs, jobs, coverage. Each tool returns a structured ToolResponse with status, summary, optional actionRequired, and details - readable by any agent without extra prompting.
03
Same JSON config shape works in Claude Desktop, Cursor (~/.cursor/mcp.json), Cline, Windsurf, and any future MCP-compatible client. One install, every agent.
How it works
Diagram 1 · Agent ↔ MCP topology
Diagram 2 · Tool surface
Diagram 3 · Authoring loop
Configure
Claude Desktop / Cursor / Windsurf config
{
"mcpServers": {
"lastest": {
"command": "npx",
"args": [
"-y",
"@lastest/mcp-server@latest",
"--url", "https://your-lastest-instance",
"--api-key", "YOUR_API_KEY"
]
}
}
}