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•347 B
import { Tool } from '../types';
import { Clear } from './clear';
import { InterceptHttpRequest } from './intercept-http-request';
import { List } from './list';
import { MockHttpResponse } from './mock-http-response';
export const tools: Tool[] = [
new Clear(),
new InterceptHttpRequest(),
new List(),
new MockHttpResponse(),
];