Skip to main content
Glama

MCP Gemini Server

by bsmi021

exampleTool

Generate personalized greeting messages by inputting a name and selecting a language. The tool on MCP Gemini Server uses structured input parameters to deliver tailored outputs for various use cases.

Instructions

An example tool that takes a name and returns a greeting message. Demonstrates the basic structure of an MCP tool using Zod for parameter definition.

Input Schema

NameRequiredDescriptionDefault
languageNoOptional language code for the greeting (e.g., 'en', 'es', 'fr'). Defaults to 'en' if not provided or invalid.
nameYesThe name to include in the greeting message. Required, 1-50 characters.

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "language": { "description": "Optional language code for the greeting (e.g., 'en', 'es', 'fr'). Defaults to 'en' if not provided or invalid.", "enum": [ "en", "es", "fr" ], "type": "string" }, "name": { "description": "The name to include in the greeting message. Required, 1-50 characters.", "maxLength": 50, "minLength": 1, "type": "string" } }, "required": [ "name" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/bsmi021/mcp-gemini-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server