Skip to Content
The Makinari API repo now includes an MCP Server — connect your AI models directly. View on GitHub →
MCP ServerToolsAnalyze ICP Total CountPOST

Analyze ICP Total Count

Analyze the total count of ICP targets from Finder. Pass filters using finder field names: person_industries, person_locations, person_skills (number[] IDs from getFinderCategoryIds), organization_domains (string[]), organization_industries, organization_locations (number[] IDs), role_title, role_description. Use getFinderCategoryIds first for industries/locations/skills - they require IDs. Can pass filters in query object or at top level.

Input Schema

ParameterTypeDescription
queryobjectFilters object. Keys: person_industries, person_locations, person_skills (number[] IDs), organization_domains (string[]), organization_industries, organization_locations, organization_keywords, organization_web_technologies (number[] IDs), role_title, role_description. Can be empty for total count.
person_industriesarrayIndustry IDs from getFinderCategoryIds(category: “industries”, q: ”…“)
person_locationsarrayLocation IDs from getFinderCategoryIds(category: “locations”, q: ”…“)
person_skillsarraySkill IDs from getFinderCategoryIds(category: “person_skills”, q: ”…“)
organization_domainsarrayCompany domains e.g. [“example.com”]
organization_industriesarrayOrganization industry IDs
organization_locationsarrayOrganization location IDs
organization_keywordsarrayOrganization keyword IDs
organization_web_technologiesarrayWeb technology IDs
role_titlestringJob title filter
role_descriptionstringRole/job description filter
site_idstringOptional site UUID for context

REST Endpoint

POST /api/agents/tools/analyzeICPTotalCount

Send a JSON body with the same parameters as the MCP input schema. Filters can be passed at the top level or nested under a query object.

POST /api/agents/tools/analyzeICPTotalCount Authorization: Bearer YOUR_API_KEY Content-Type: application/json { "person_industries": [123, 456], "person_locations": [789], "role_title": "Software Engineer" }

Response:

{ "success": true, "total": 3840 }
Last updated on