# Zoho Bigin — MCP server on mcp.ai > Zoho Bigin is a simplified CRM solution from Zoho tailored for small businesses, focusing on pipeline tracking and relationship management By: mcp.ai · official Page: https://mcp.ai/zoho_bigin ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_zoho_bigin?ms=1781543580000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/zoho_bigin/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/zoho_bigin/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/zoho_bigin/skill.md Postman collection (v2.1): https://mcp.ai/zoho_bigin/postman.json ## Tools - zoho_bigin_add_records(data: object[], trigger?: string[], module_api_name: string) — Tool to add new records to a module. use when you need to programmatically insert one or more records into bigin after confirming module name and field api names. provide required fields per module (e - zoho_bigin_add_tags_to_records(tags: object[], record_id: string, over_write?: boolean, module_api_name: string) — Tool to add tags to a specific record in a module. use when you need to categorize or label a record after creation or update. - zoho_bigin_create_tags(tags: object[], module: string) — Tool to create tags for a module. use when you need to add new tags to a specific module in zoho bigin. - zoho_bigin_delete_attachment(record_id: string, attachment_id: string, module_api_name: string) — Tool to delete an attachment from a record. use when you need to remove a file after confirming its record id and attachment id. - zoho_bigin_delete_records(ids: string[], wf_trigger?: boolean, module_api_name: string) — Tool to delete records from a module. use when removing one or multiple records after confirming their ids. - zoho_bigin_download_attachment(record_id: string, attachment_id: string, module_api_name: string) — Tool to download an attachment from a record. use when you need the binary content of a specific attachment after confirming the record and attachment ids. - zoho_bigin_get_attachments(page?: integer, fields: string, per_page?: integer, record_id: string, module_api_name: string) — Tool to retrieve attachments for a record. use when you need a paginated list of attachments for a given module record. - zoho_bigin_get_deleted_records(page?: integer, type?: string, per_page?: integer, module_api_name: string) — Tool to get a list of deleted records in a module. use when auditing or restoring recently deleted data (recycle within 60 days, permanent within 120 days). - zoho_bigin_get_modules() — Tool to retrieve a list of all modules. use when you need to discover which modules are available in bigin. - zoho_bigin_get_records(cvid?: string, page?: integer, fields: string, sort_by?: string, approved?: string, per_page?: integer, page_token?: string, sort_order?: string, module_api_name: string) — Tool to retrieve records from a bigin module. use when listing or querying module data with specific fields, sorting, filtering, and pagination. - zoho_bigin_update_records(data: object[], trigger?: string[], record_id?: string, module_api_name: string) — Tool to update existing records in a module. use when you need to modify one or multiple records after confirming their ids and field api names. supports up to 100 records per call; specify an optiona - zoho_bigin_upload_attachment(file?: string, record_id: string, attachment_url?: string, module_api_name: string) — Tool to upload an attachment to a record. use when you need to attach a file or specify a public url for upload to a bigin record. ensure module api name and record id are correct before calling. ## Links Docs: https://mcp.ai/docs/mcps/zoho_bigin Website: https://mcp.ai/mcps/zoho_bigin