Skip to main content
Glama

Currents

Official
by currents-dev
interfaces.d.ts846 B
interface ITodo { id: string, title: string, completed: boolean } interface ITodoItemProps { key : string, todo : ITodo; editing? : boolean; onSave: (val: any) => void; onDestroy: () => void; onEdit: () => void; onCancel: (event : any) => void; onToggle: () => void; } interface ITodoItemState { editText : string } interface ITodoFooterProps { completedCount : number; onClearCompleted : any; nowShowing : string; count : number; } interface ITodoModel { key : any; todos : Array<ITodo>; onChanges : Array<any>; subscribe(onChange); inform(); addTodo(title : string); toggleAll(checked); toggle(todoToToggle); destroy(todo); save(todoToSave, text); clearCompleted(); } interface IAppProps { model : ITodoModel; } interface IAppState { editing? : string; nowShowing? : string }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/currents-dev/currents-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server