We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tableau/tableau-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { ZodiosEndpointParameter } from '@zodios/core';
import { z } from 'zod';
export const paginationParameters = [
{
name: 'pageSize',
type: 'Query',
schema: z.number().optional(),
description:
'The number of items to return in one response. The minimum is 1. The maximum is 1000. The default is 100.',
},
{
name: 'pageNumber',
type: 'Query',
schema: z.number().optional(),
description: 'The offset for paging. The default is 1.',
},
] as const satisfies Array<ZodiosEndpointParameter>;