API Overview
EZBiz services are accessible through multiple integration points depending on the product.
MCP Servers (Primary API)
Our MCP servers are the main programmatic interface. They follow the Model Context Protocol standard and can be used with any MCP-compatible client.
- BizIntel: Business intelligence tools (port 4200)
- SEO: SEO analysis tools (port 4201)
- Social: Social media tools (port 4202)
- GovCon: Government contracting tools
See MCP Integration for setup instructions.
Webhooks
The AI Front Office sends webhook events for real-time integration with your systems.
- New call received
- Appointment booked
- SMS received
- Voicemail transcribed
See Webhooks for event formats and configuration.
Base URLs
| Service | URL |
|---|---|
| EZBiz Website | ezbizservices.com |
| PDFShift | pdfshift.app |
| SEO Toolkit | seotools.ezbizservices.com |
| AI Front Office Dashboard | Provided during onboarding |
| MCP BizIntel | Port 4200 |
| MCP SEO | Port 4201 |
| MCP Social | Port 4202 |
Rate Limits
Rate limits vary by tier. Free tiers have conservative limits to prevent abuse. Pro and Enterprise tiers have higher or unlimited limits. See individual product pages for specific limits.
Response Format
All API responses use JSON. MCP tools return structured data following the MCP response format:
{
"content": [
{
"type": "text",
"text": "Response data here"
}
]
}