We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gkoreli/backlog-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* navigation-events.ts — Typed emitter for task navigation.
*
* Replaces document CustomEvent strings (task-select, scope-enter)
* with typed, DI-injected events per `emitter-typed-events`.
*/
import { Emitter } from '@nisli/core';
export class NavigationEvents extends Emitter<{
'task-select': { taskId: string };
'scope-enter': { scopeId: string };
}> {}