We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ownlytics/mcptix'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
api-test-helper.d.ts•578 B
import request from 'supertest';
import { TicketQueries } from '../../db/queries';
import { ApiServer } from '../server';
/**
* Creates a test server for API testing
* @param ticketQueries The TicketQueries instance to use
* @returns An object with the Express app, server instance, and a request function
*/
export declare function createTestServer(ticketQueries: TicketQueries): {
app: import("express").Application;
server: ApiServer;
request: () => import("supertest/lib/agent")<request.SuperTestStatic.Test>;
};
//# sourceMappingURL=api-test-helper.d.ts.map