CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Hopgraph

j-sulliman/hopgraph-mcp
HTTPregistry active
Summary

Connects to HopGraph's business verification API for Australian and New Zealand company lookups against government registers. Exposes five tools: verify_business does the full compliance check with cross-jurisdictional screening (ASIC, NZBN, banned persons, disqualified directors), search_business finds the right identifier, expand_person_network maps all NZ directorships for an individual, and get_verification retrieves past audit records by UID. Returns a three-tier risk assessment (CLEAR, ADVISORY, FLAGS_FOUND) that surfaces disqualifications and bans across entity chains. Requires a free API key from hopgraph.com. You'd reach for this when building compliance workflows, doing customer due diligence, or screening business relationships in ANZ markets where manual register checking is tedious.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

HopGraph MCP Server

Verify Australian and New Zealand businesses against government registers via any MCP-compatible AI agent.

Returns registration status, directors, licences, trading names, and a three-tier risk assessment (CLEAR / ADVISORY / FLAGS_FOUND) that surfaces regulatory findings across jurisdictions — including bans, disqualifications, insolvencies, and disqualified directors that may not appear in any single register.

Each verification produces an immutable compliance record with a unique audit UID.

Compatible with Claude, ChatGPT, Cursor, and any MCP-compatible AI client.

Quick Start

1. Get a free API key

Sign up at hopgraph.com/signup. No credit card required.

2. Add to Claude Desktop

Open your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json

Add the following configuration (replace YOUR_API_KEY with your actual key):

{
  "mcpServers": {
    "hopgraph": {
      "command": "npx",
      "args": [
        "mcp-remote",
        "https://hopgraph.com/mcp/",
        "--header",
        "Authorization:${AUTH_HEADER}"
      ],
      "env": {
        "AUTH_HEADER": "Bearer YOUR_API_KEY"
      }
    }
  }
}

3. Restart Claude Desktop

After saving the config, restart the app. You'll see the HopGraph tools available in your conversation.

4. Test it

Ask your AI assistant:

Verify business ABN 35002976294

You should see a full verification with company status, licence details, and a risk assessment.

Tools

verify_business

Verify any Australian or New Zealand business against government registers. Accepts ABN (11 digits), ACN (9 digits), NZBN (13 digits), or company name.

Returns registration status, directors, licences, trading names, and a three-tier risk assessment (CLEAR / ADVISORY / FLAGS_FOUND). For Australian entities, cross-references adviser registrations against banned persons registers across entity licence chains. For New Zealand entities, checks every director against the NZ Companies Office Disqualified Directors and Insolvency registers in real time, and screens them against Australian regulatory registers.

Each verification produces an immutable compliance record with a unique audit UID. Findings are labelled as "Exact name match" or "Partial name match" so you can apply the appropriate level of scrutiny.

ParameterRequiredDescription
identifierYesABN, ACN, NZBN, or company name to verify
countryNoAU or NZ. Auto-detected from identifier format if omitted

search_business

Search Australian and New Zealand business entities by name. Covers 2.3 million+ Australian companies, 3.2 million business names, and New Zealand NZBN-registered entities.

Use this to find the correct identifier before calling verify_business.

ParameterRequiredDescription
queryYesBusiness name or partial name to search for
limitNoMaximum results to return (default 20, max 50)

expand_person_network

Discover all NZ company directorships and shareholdings held by a named person via the NZ Companies Office register. Returns every company where the person holds a role — company name, NZBN, status, role type, and appointment date — plus flags for companies already in the HopGraph database.

Use this to map a person's corporate network beyond what a single entity lookup reveals.

ParameterRequiredDescription
person_nameYesFull name of the person to search for (e.g. "Stephen Mikkelsen")
role_typeNoFilter by role type: DIR (directors), SHR (shareholders), or ALL (default)

get_verification

Retrieve a previously generated compliance verification record by its unique audit UID. Returns the immutable entity snapshot captured at verification time, data sources consulted with freshness timestamps, and the risk assessment result.

ParameterRequiredDescription
verification_uidYesThe verification UID (UUID) returned by a previous verify_business call

get_verification_history Professional+

Retrieve the verification history for a specific entity, showing all past compliance checks you have run against it. Returns verification dates, risk assessment results, and audit UIDs. Useful for tracking how an entity's compliance status has changed over time.

Requires a Professional or Business tier API key — upgrade at hopgraph.com/billing.

ParameterRequiredDescription
identifierYesABN, ACN, NZBN, or company name used in previous verify_business calls
limitNoMaximum history records to return (default 20, max 100)

Coverage

SourceRecordsCountry
ASIC Companies2.3M+Australia
ASIC Business Names3.2M+Australia
ASIC Financial Advisers87K+Australia
ASIC AFS Licences6.5K+Australia
ASIC Credit Licences4.5K+Australia
ASIC Credit Representatives50K+Australia
ASIC Banned & Disqualified Persons7K+Australia
ASIC Banned Organisations15+Australia
NZBN RegisterLive APINew Zealand
NZ Companies Office Disqualified DirectorsLive APINew Zealand
NZ Companies Office Insolvency RegisterLive APINew Zealand

Chat Interface

A browser-based chat interface is available at hopgraph.com/chat for professionals who prefer to work directly in the browser. Same cross-referencing, same compliance records. Supports all MCP tool capabilities including person network expansion and verification history.

Pricing

TierVerificationsRate LimitPrice
Free50/month10 req/minFree

REST API

HopGraph also provides a REST API. See hopgraph.com/docs for full documentation.

Legal

Findings are factual observations from public government registers, not identity assertions. Each match is labelled with its confidence level. Professional judgment should be applied to all results. See Terms of Service and Privacy Policy.

Australian data sourced from ASIC under Creative Commons Attribution 3.0 Australia. New Zealand data sourced from the NZBN Register and NZ Companies Office registers (Disqualified Directors, Insolvency) maintained by MBIE.

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Registryactive
TransportHTTP
UpdatedMar 6, 2026
View on GitHub