We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/serkan-ozal/browser-devtools-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•286 B
import { Tool } from '../types';
import { GoBack } from './go-back';
import { GoForward } from './go-forward';
import { GoTo } from './go-to';
import { Reload } from './reload';
export const tools: Tool[] = [
new GoBack(),
new GoForward(),
new GoTo(),
new Reload(),
];