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•515 B
import { Tool } from '../types';
import { GetConsoleMessages } from './get-console-messages';
import { GetHttpRequests } from './get-http-requests';
import { GetTraceId } from './get-trace-id';
import { GetWebVitals } from './get-web-vitals';
import { NewTraceId } from './new-trace-id';
import { SetTraceId } from './set-trace-id';
export const tools: Tool[] = [
new GetConsoleMessages(),
new GetHttpRequests(),
new GetTraceId(),
new GetWebVitals(),
new NewTraceId(),
new SetTraceId(),
];