{"name":"Bizapedia MCP","version":"1.0.0","description":"Bizapedia MCP provides AI agents with access to over 100 million U.S. and Canadian business entity records, officer and principal data, registered agent information, trademark data, and address lookups — all sourced directly from Secretary of State filings.","tools":[{"name":"search_companies","description":"Search for U.S. and Canadian business entities by company name. Returns a list of matching companies with filing details, addresses, registered agent information, and principals.","inputSchema":{"type":"object","properties":{"name":{"type":"string","description":"Company name to search for. Minimum 5 characters. Example: Apple"},"city":{"type":"string","description":"Optional city filter. Example: Los Angeles"},"state":{"type":"string","description":"Optional state/province postal abbreviation filter. Example: CA, FL, TX, ON"}},"required":["name"]}},{"name":"lookup_company_by_file_number","description":"Look up a single business entity by its state-issued file number. Returns full company details including addresses, registered agent, and principals.","inputSchema":{"type":"object","properties":{"state":{"type":"string","description":"State or province postal abbreviation. Example: CA, FL, TX, NV"},"file_number":{"type":"string","description":"State-issued file number. Example: 806592, L22000999999"}},"required":["state","file_number"]}},{"name":"search_companies_by_keyword","description":"Search for business entities by keyword or phrase matched against company name and business description. Returns a list of matching records with tokens that can be used to retrieve full company details via get_company_by_token.","inputSchema":{"type":"object","properties":{"keyword":{"type":"string","description":"Keyword or phrase to search. Minimum 5 characters. Example: Insurance, Software Development"},"state":{"type":"string","description":"Optional state/province postal abbreviation filter. Example: CA, FL, TX"}},"required":["keyword"]}},{"name":"get_company_by_token","description":"Retrieve full company details using a token obtained from search_companies_by_keyword. Tokens expire after 1 hour.","inputSchema":{"type":"object","properties":{"token":{"type":"string","description":"Token obtained from a search_companies_by_keyword result. Must be used within 1 hour."}},"required":["token"]}},{"name":"search_people","description":"Search for business principals, officers, and registered agents by name. Returns matching individuals along with the companies they are associated with.","inputSchema":{"type":"object","properties":{"first_name":{"type":"string","description":"First name. Minimum 2 characters. Example: John"},"last_name":{"type":"string","description":"Last name. Minimum 2 characters. Example: Smith"},"city":{"type":"string","description":"Optional city filter."},"state":{"type":"string","description":"Optional state/province postal abbreviation filter."}},"required":["first_name","last_name"]}},{"name":"search_addresses","description":"Search for business entities, principals, and trademarks associated with a street address. Useful for identifying all businesses or people connected to a specific location.","inputSchema":{"type":"object","properties":{"address":{"type":"string","description":"Street address. Minimum 3 characters. Example: 5750 Wilshire Blvd"},"city":{"type":"string","description":"City. Minimum 3 characters. Example: Los Angeles"},"state":{"type":"string","description":"Optional state/province postal abbreviation. Example: CA"},"postal_code":{"type":"string","description":"Optional postal code. Example: 90036"}},"required":["address","city"]}},{"name":"search_trademarks","description":"Search USPTO trademark records by mark identification and/or owner name. At least one parameter is required.","inputSchema":{"type":"object","properties":{"mark_identification":{"type":"string","description":"Trademark name or mark identification. Minimum 2 characters. Example: Bizapedia"},"owner_name":{"type":"string","description":"Trademark owner name. Minimum 2 characters. Example: Apple Inc"}},"required":[]}},{"name":"find_related_entities","description":"Find all business entities sharing the same name across jurisdictions. Returns the domestic formation entity and all foreign qualifications — useful for getting the complete multi-state picture of a business that operates in more than one state. Bizapedia exclusive.","inputSchema":{"type":"object","properties":{"name":{"type":"string","description":"Entity name to search for. Minimum 5 characters. Example: Walmart Inc."}},"required":["name"]}}]}