Skip to main content
Glama

list_senders

Retrieve all configured email senders to use their IDs when creating newsletter campaigns in Keila.

Instructions

List all configured senders. Use sender IDs when creating campaigns.

Returns: A dict with 'data' (list of senders with id, name, from_email, reply_to).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The actual implementation of the tool, calling the API.
    def list_senders(self) -> dict:
        """List all senders."""
        resp = self.session.get(f"{self.url}/api/v1/senders", headers=self._headers(), timeout=30)
        resp.raise_for_status()
        return resp.json()
  • mcp_server.py:267-275 (registration)
    The MCP tool registration for 'list_senders'.
    @mcp.tool()
    def list_senders() -> dict:
        """
        List all configured senders. Use sender IDs when creating campaigns.
    
        Returns:
            A dict with 'data' (list of senders with id, name, from_email, reply_to).
        """
        return _client.list_senders()

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/gwbischof/keila-mcp'

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