We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/systeminit/si'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
controls.ts•906 B
import { nextTick } from "vue";
// Generic handler for a tab action
export const handleTab = (e: KeyboardEvent, currentFocus?: HTMLElement) => {
const focusable = Array.from(document.querySelectorAll<HTMLElement>('[tabindex="0"]'));
if (!currentFocus) return;
const index = focusable.indexOf(currentFocus);
if (e.shiftKey) {
nextTick(() => {
if (currentFocus && focusable) {
if (index > 0) {
focusable[index - 1]?.focus();
} else {
focusable[focusable.length - 1]?.focus();
}
}
});
} else if (index === focusable.length - 1) {
// When you hit the last attribute, go back to the
// fuzzy search instead of searching the document for more things to tab to.
e.preventDefault();
nextTick(() => {
focusable[0]?.focus();
});
} else {
nextTick(() => {
focusable[index + 1]?.focus();
});
}
};