Skip to main content
CentralStationCRM logo

CentralStationCRM

CentralStationCRM is an easy-to-use CRM software focusing on collaboration and long-term customer relationships.

This is a first-class FlyMyAI MCP. Agents discover it automatically via tool search and call the actions below on demand - you never wire it up by hand. See the Composio catalog for how discovery works.

Connect

CentralStationCRM authenticates with an API key. Generate the credential in your CentralStationCRM account, then paste it into FlyMyAI the first time an agent uses a CentralStationCRM action.

Get your CentralStationCRM credential →

Fields to fill in FlyMyAI

FieldDetails
Account SubdomainThe subdomain associated with your CentralStationCRM account, used to construct the base URL. (required)
CentralStationCRM API KeyThe API key for authenticating requests to CentralStationCRM. (required)

Actions

Every action this integration exposes. Agents pick the right one from the task; you do not call them by name.

ActionWhat it doesRequired inputs
CENTRALSTATIONCRM_CHECK_CONNECTIONTool to verify the connection status of the centralstationcrm api key. use when validating credentials before making other api calls.-
CENTRALSTATIONCRM_COUNT_PEOPLETool to retrieve the total number of people in the account. use when you need the current total number of contacts in your centralstationcrm account. example: "how many contacts exist in my account?"-
CENTRALSTATIONCRM_CREATE_COMPANYTool to create a new company record. use when you need to add an organization to your crm before linking it to contacts or deals.name
CENTRALSTATIONCRM_CREATE_DEALTool to create a new deal record. use when needing to log a sales opportunity after grouping contacts or companies.name, value, value_type, target_date
CENTRALSTATIONCRM_CREATE_PERSONTool to create a new person record. use when you need to add a person to your crm before linking them to other records.name
CENTRALSTATIONCRM_CREATE_PERSON_ADDRESSTool to create a new address for a specific person. use when you need to add or update postal details after confirming person id.person_id, city, atype
CENTRALSTATIONCRM_CREATE_PERSON_ASSITool to create a new assistant (assi) entry for a specific person. use after confirming the person id when you need to manage assistant contacts.person_id, name
CENTRALSTATIONCRM_CREATE_PERSON_AVATARTool to create a new avatar for a specific person. use when you need to attach a base64-encoded image file after confirming the person's id.person_id, avatar
CENTRALSTATIONCRM_CREATE_PERSON_CONTACT_DETAILTool to create a new contact detail for a specific person. use when adding a phone number after confirming the person's id.person_id, atype, name
CENTRALSTATIONCRM_CREATE_PERSON_HISTORIC_EVENTTool to create a new historic event for a specific person. use after confirming person id to record dates like birthdays, anniversaries, or other milestones.person_id, atype, name
CENTRALSTATIONCRM_DELETE_COMPANYTool to delete a company record by id. use when you need to permanently remove an organization after verifying the correct id.id
CENTRALSTATIONCRM_DELETE_PERSONTool to delete a person record by id. use when you need to permanently remove a contact after verifying the correct id.id
CENTRALSTATIONCRM_DELETE_PERSON_ADDRESSTool to delete a person's address by its id. use when you need to remove an outdated or incorrect address after confirming the person id and address id.person_id, address_id
CENTRALSTATIONCRM_DELETE_PERSON_ASSITool to delete an assi entry of a person. use when you need to remove an assistant record after confirming person id and assi id.person_id, assi_id
CENTRALSTATIONCRM_DELETE_PERSON_AVATARTool to delete a person's avatar by its id. use when you need to remove an outdated or incorrect avatar after confirming the person id and avatar id.person_id, avatar_id
CENTRALSTATIONCRM_DELETE_PERSON_CONTACT_DETAILTool to delete a contact detail of a person. use when you need to remove an outdated or incorrect contact detail after confirming the person id and contact detail id.person_id, contact_detail_id
CENTRALSTATIONCRM_DELETE_PERSON_HISTORIC_EVENTTool to delete a historic event of a person by its id. use when you need to remove outdated or incorrect milestone entries after confirming the person id and historic event id.person_id, historic_event_id
CENTRALSTATIONCRM_GET_API_USER_MAILDROPTool to retrieve the current api user's maildrop for people and companies. use after authenticating the api user.-
CENTRALSTATIONCRM_GET_COMPANYTool to retrieve details of a specific company by id. use after confirming the company id.company_id
CENTRALSTATIONCRM_GET_DEALTool to retrieve details of a specific deal by its id. use when you have a confirmed deal id.deal_id
CENTRALSTATIONCRM_GET_DEALSTool to retrieve a paginated list of all deals. use when you need to list deals with pagination and optional includes (e.g., companies, tags) or additional methods.-
CENTRALSTATIONCRM_GET_PERSONTool to retrieve details of a specific person by id. use when you have a person id and need their full details.person_id
CENTRALSTATIONCRM_GET_PERSONSTool to retrieve a paginated list of all people. use when listing contacts with pagination and optional includes.-
CENTRALSTATIONCRM_GET_PERSON_ADDRESSTool to retrieve a specific address of a person by address id. use after confirming person and address ids. example: "fetch address for person #42, address #101."person_id, address_id
CENTRALSTATIONCRM_GET_PERSON_ADDRESSESTool to retrieve all addresses for a specific person. use when you need to list a person’s addresses after confirming their id. example: "get addresses for person with id 42."person_id
CENTRALSTATIONCRM_GET_PERSON_ASSITool to retrieve a specific assi entry of a person by id. use after confirming person id and assi id.person_id, assi_id
CENTRALSTATIONCRM_GET_PERSON_ASSISTool to retrieve all assistant entries for a specific person. use after confirming the person id. example: "list assistants for person with id 42."person_id
CENTRALSTATIONCRM_GET_PERSON_AVATARTool to retrieve a specific avatar of a person by avatar id. use after you know both person id and avatar id to fetch the base64-encoded image.person_id, avatar_id
CENTRALSTATIONCRM_GET_PERSON_AVATARSTool to retrieve all avatars for a specific person. use when you need to list a person’s avatars after confirming their id. example: "list avatars for person with id 42."person_id
CENTRALSTATIONCRM_GET_PERSON_CONTACT_DETAILTool to retrieve a specific contact detail by id for a person. use after confirming person and contact detail ids. example: "fetch contact detail #108 for person #42."person_id, contact_detail_id
CENTRALSTATIONCRM_GET_PERSON_CUSTOM_FIELDSTool to retrieve all custom fields for a specific person. use when you need to access a person's custom fields after confirming their id.person_id
CENTRALSTATIONCRM_GET_PERSON_HISTORIC_EVENTTool to retrieve a specific historic event of a person by id. use after confirming both person and event ids. example: "fetch historic event 101 for person 42."person_id, event_id
CENTRALSTATIONCRM_GET_PERSON_HISTORIC_EVENTSTool to retrieve all historic events for a specific person. use when you need to list a person's historical dates after confirming their id.person_id
CENTRALSTATIONCRM_MERGE_PERSONTool to merge another person into an existing person by id. use after identifying duplicate records to consolidate them. example: merge person 42 with [43,44].person_id, looser_ids
CENTRALSTATIONCRM_SEARCHSearch recordsterm
CENTRALSTATIONCRM_SEARCH_PEOPLETool to retrieve people matching search criteria. use when you need to find specific contacts by name, email, or phone after authenticating with your api key.-
CENTRALSTATIONCRM_STATS_PEOPLETool to retrieve key statistics about people. use when you need a quick summary of total entries, e.g., after filtering by tag or custom criteria.-
CENTRALSTATIONCRM_UPDATE_COMPANYTool to update an existing company by id. use after retrieving the company's details when you need to modify one or more fields.company_id, name
CENTRALSTATIONCRM_UPDATE_PERSONTool to update an existing person by id. use after retrieving the person's current details when you need to modify one or more fields.person_id
CENTRALSTATIONCRM_UPDATE_PERSON_ADDRESSTool to update a specific address of a person. use after retrieving the person's addresses to modify one.person_id, address_id, city
CENTRALSTATIONCRM_UPDATE_PERSON_ASSITool to update an assi entry of a person. use when you need to modify a specific assistant record after retrieving the person’s assis list. example: "update assi 101 for person 42 changing email to foo@example.com".person_id, assi_id, name
CENTRALSTATIONCRM_UPDATE_PERSON_CONTACT_DETAILTool to update a specific contact detail of a person by id. use after retrieving the person's contact details to modify one.person_id, contact_detail_id, atype, name
CENTRALSTATIONCRM_UPDATE_PERSON_HISTORIC_EVENTTool to update a historic event of a person by id. use after retrieving the event when you need to modify its details. example: "update historic event 101 for person 42 changing atype to anniversary."person_id, event_id, atype, name
We love our partners - FlyMy.AI builds with the best. Thanks, CentralStationCRM!