Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/mcp/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -839,8 +839,9 @@ export function isMcpAdminEnabled(env: Env): boolean {

/** The MCP `serverInfo.name` this server reports, and the `$mcp_server_name` its analytics carry.
* One constant so the handshake a client sees and the dashboards an operator reads can never
* disagree about what this server is called. */
export const MCP_SERVER_NAME = "loopover";
* disagree about what this server is called. Module-local: both readers (the handshake's serverInfo and
* the analytics property builder) live in this file, and #10177 exported it without a consumer outside it. */
const MCP_SERVER_NAME = "loopover";

export class LoopoverMcp {
private accessScopePromise: Promise<ControlPanelAccessScope> | null = null;
Expand Down
Loading