We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Raydius/gemini-for-claude-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
count-tokens.schema.ts•431 B
import { z } from 'zod';
/**
* Schema for count_gemini_tokens tool input.
* Model is NOT accepted from client - it's injected server-side from GEMINI_DEFAULT_MODEL.
*/
export const CountTokensInputSchema = z.object({
text: z.string().min(1, 'Text is required').max(1000000),
});
/** Type for CountTokensInput - model is NOT included, injected server-side */
export interface CountTokensInputDto {
readonly text: string;
}