Skip to main content
Glama

Mealie MCP Server

by rldiao
utils.py572 B
import json def format_error_response(error_message: str) -> str: """Format error responses consistently as JSON strings.""" error_response = {"success": False, "error": error_message} return json.dumps(error_response) def format_api_params(params: dict) -> dict: """Formats list and None values in a dictionary for API parameters.""" output = {} for k, v in params.items(): if v is None: continue if isinstance(v, list): output[k] = ",".join(v) else: output[k] = v return output

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/rldiao/mealie-mcp-server'

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