We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/superglue-ai/superglue'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Documentation Strategies
*
* Fetching and processing strategies for documentation retrieval.
*/
// Fetching Strategies
export { GraphQLStrategy } from './fetching-graphql.js';
export { AxiosFetchingStrategy } from './fetching-axios.js';
export { PlaywrightFetchingStrategy } from './fetching-playwright.js';
// Processing Strategies
export { PostgreSqlStrategy } from './processing-postgresql.js';
export { HtmlMarkdownStrategy } from './processing-html-markdown.js';
export { RawPageContentStrategy } from './processing-raw-content.js';
// OpenAPI Fetching Strategies
export { OpenApiLinkExtractorStrategy } from './openapi-link-extractor.js';
export { DirectOpenApiStrategy } from './openapi-direct.js';
export { SwaggerUIStrategy } from './openapi-swaggerui.js';
export { HtmlLinkExtractorStrategy } from './openapi-html-link-extractor.js';