Skip to main content
Glama

create_account

Create a new Apollo.io account by providing name, domain, phone number, and address information for sales and marketing lead generation.

Instructions

Create a new account in Apollo.io.

This tool creates a new account with the provided information. The domain and address will be intelligently parsed for additional data.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
domainNo
phone_numberNo
raw_addressNo

Implementation Reference

  • The core handler function for the 'create_account' tool. Decorated with @mcp.tool() for automatic registration in FastMCP. Posts account creation data to Apollo.io API.
    @mcp.tool() async def create_account( name: str, domain: Optional[str] = None, phone_number: Optional[str] = None, raw_address: Optional[str] = None ) -> Dict[str, Any]: """ Create a new account in Apollo.io. This tool creates a new account with the provided information. The domain and address will be intelligently parsed for additional data. """ endpoint = "/v1/accounts" data = {"name": name} if domain: data["domain"] = domain if phone_number: data["phone_number"] = phone_number if raw_address: data["raw_address"] = raw_address try: result = await apollo_client.make_request("POST", endpoint, data=data) return result except httpx.HTTPStatusError as e: return {"error": f"API request failed: {e.response.status_code} {e.response.text}"} except Exception as e: return {"error": f"Request failed: {str(e)}"}

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/FromSmall2Big/Apollo-MCP'

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