Skip to main content
Glama

hello_world

Generate a basic greeting using a simple tool from the Basic MCP Server, designed for foundational MCP development and integration with VS Code and GitHub Copilot.

Instructions

Devuelve un saludo básico.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • src/index.ts:16-25 (registration)
    Registration of the 'hello_world' tool using server.tool, including inline schema and handler.
    server.tool( "hello_world", "Devuelve un saludo básico.", {}, async () => ({ content: [ { type: "text", text: "¡Hola desde el MCP básico!" }, ], }) );
  • Inline handler function for 'hello_world' tool that returns a text content response with a greeting.
    async () => ({ content: [ { type: "text", text: "¡Hola desde el MCP básico!" }, ], })
  • Empty schema (input validation) for the 'hello_world' tool.
    {},

Other Tools

Related 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