Add Explorium company list creation tool#13
Merged
Conversation
max-agent added POST /api/v1/explorium/companies/create-list to build an organization list (search_type=organizations) from an Explorium company search. Expose it as a new MCP tool mirroring explorium_create_list: - repository: exploriumCreateCompanyList -> companies/create-list - schema: exploriumCreateCompanyListSchema (company/business filter keys) - tools: register explorium_create_company_list (auto idempotency_key) - verify-tools + audit-endpoints: include the new tool - docs: TOOL_REFERENCE, ENDPOINT_CHECKLIST, .llm.txt, tool counts https://claude.ai/code/session_01MnMnZHjFtgjrRKhhAaRhHu
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add support for creating Explorium-backed organization lists via a new MCP tool
explorium_create_company_list. This complements the existing people list creation tool and allows users to search for and enrich company data.Key Changes
POST /api/v1/explorium/companies/create-listin repository layerexplorium_create_company_listwith schema validation for company search criteria (country_code, company_size, company_revenue, company_tech_stack_category, etc.)idempotency_keyif not provided, ensuring safe retries.llm.txtwith full parameter documentationENDPOINT_CHECKLIST.mdto reflect new tool and clarify that add-more is people-onlyTOOL_REFERENCE.mdandREADME.mdto reflect 64 total tools (was 63)Implementation Details
explorium_create_listfor consistencyProspectListwithsearch_type: "organizations"andstatus: "pending"GET /prospect-lists/{id}for progress trackinghttps://claude.ai/code/session_01MnMnZHjFtgjrRKhhAaRhHu