We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/huiseo/outline-smart-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
/**
* Formatters Index
*
* Re-export all formatters
*/
export { buildUrl } from './url.js';
export {
formatSearchResults,
formatDocumentInfo,
formatRecentDocuments,
formatArchivedDocuments,
formatTrashDocuments,
formatBacklinks,
} from './document.js';
export { formatCollections } from './collection.js';
export { formatComments } from './comment.js';
export { formatBatchResults, getErrorMessage } from './batch.js';
// Type re-exports (backward compatibility)
export type {
OutlineDocument,
OutlineCollection,
OutlineComment,
SearchResult,
} from '../types/api.js';
export type { BatchResult, BatchSummary } from '../types/batch.js';