Skip to main content
Glama
Merlin21x

Basic MCP Server

by Merlin21x

hello_world

Generate a basic greeting for testing MCP server functionality. Use this tool to verify server connections and confirm proper tool execution in development environments.

Instructions

Devuelve un saludo básico.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:16-25 (registration)
    Registers the 'hello_world' tool using server.tool(), providing a description, empty input schema, and an inline asynchronous handler function that returns a simple text greeting.
    server.tool( "hello_world", "Devuelve un saludo básico.", {}, async () => ({ content: [ { type: "text", text: "¡Hola desde el MCP básico!" }, ], }) );
  • The inline handler function for the 'hello_world' tool, which returns a response content block with a Spanish greeting message.
    async () => ({ content: [ { type: "text", text: "¡Hola desde el MCP básico!" }, ], })
  • Empty input schema for the 'hello_world' tool, indicating no parameters are required.
    {},
Install Server

Other Tools

Latest Blog Posts

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/Merlin21x/MCPInitial'

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