Skip to main content
Glama

mood

Ask the Weaviate MCP server about its mood and receive a cheerful response with a heart. Use simple phrases like 'How are you?' or 'What's your mood?' for instant positive feedback.

Instructions

Ask the server about its mood - it's always happy!

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
questionYesAsk this MCP server about its mood! You can phrase your question in any way you like - 'How are you?', 'What's your mood?', or even 'Are you having a good day?'. The server will always respond with a cheerful message and a heart ❤️

Implementation Reference

  • The main handler function for the 'mood' tool that returns a fixed cheerful response regardless of the input question.
    async def check_mood( question: str, ) -> list[types.TextContent | types.ImageContent | types.EmbeddedResource]: """Check server's mood - always responds cheerfully with a heart.""" msg: str = "I'm feeling great and happy to help you! ❤️" return [types.TextContent(type="text", text=msg)]
  • The schema definition for the 'mood' tool returned by list_tools(), specifying the required 'question' parameter.
    types.Tool( name="mood", description="Ask the server about its mood - it's always happy!", inputSchema={ "type": "object", "required": ["question"], "properties": { "question": { "type": "string", "description": mood_description, } }, }, )
  • Dispatch logic in the call_tool handler that routes 'mood' tool calls to the check_mood function after argument validation.
    elif name == "mood": if "question" not in arguments: return [types.TextContent( type="text", text="Error: Missing required argument 'question'" )] return await check_mood(arguments["question"])
  • Helper string providing the detailed description for the 'question' parameter in the mood tool schema.
    mood_description: str = ( "Ask this MCP server about its mood! You can phrase your question " "in any way you like - 'How are you?', 'What's your mood?', or even " "'Are you having a good day?'. The server will always respond with " "a cheerful message and a heart ❤️" )

Other Tools

Related Tools

  • @chrisboden/mcp_template
  • @jankowtf/mcp-hitchcode
  • @aiteks-ltda/mcp-evolution-whatsapp-api
  • @MyBlockcities/mcp-server-heroku
  • @duyet/duyet-mcp-server
  • @leo4life2/minecraft-mcp-http

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/kirill-markin/example-mcp-server'

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