SShortSingh.
Back to feed

registry-mcp Tool Lets Claude Verify UK and Norwegian Companies via Official Registers

0
·1 views

A developer tool called registry-mcp enables AI assistants like Claude to look up company details directly from the UK's Companies House and Norway's Brønnøysundregistrene using a single unified interface. The tool returns standardised JSON data including company status, legal form, registration date, and filing deadlines, while clearly indicating which fields each national register does or does not publish. For UK companies, it also surfaces filing due dates exactly as Companies House records them, including overdue ones shown as negative day counts rather than rolling them forward. Norway's register additionally provides VAT registration status and employee counts, data that the UK register does not publish at all. The tool includes a validation utility that normalises company number formats and supports error messages with built-in hints, though it currently covers only GB and NO country codes.

Read the full story at DEV Community

This is an AI-generated summary. ShortSingh links to the original source for the complete article.

Discussion (0)

Log in to join the discussion and vote.

Log in

Related stories

0
ProgrammingDEV Community ·

GitHub Copilot, Cursor, and Claude Code Serve Different AI Coding Needs

GitHub Copilot, Cursor, and Claude Code are often grouped as AI coding tools, but each addresses a distinct stage of the development workflow. Copilot focuses on lightweight inline autocomplete with broad editor support across VS Code, JetBrains, Neovim, and others, making it an easy entry point with a free tier of around 2,000 completions per month. Cursor, a VS Code fork with deep AI integration, handles complex multi-file edits inside the editor and has surpassed one million users, reportedly reducing PR review comments for adopters. Claude Code functions as an autonomous agent that reads files, runs commands, manages git, and executes tests across a local codebase, currently leading autonomous coding benchmarks at roughly 80% on SWE-bench Verified. Experts suggest layering all three by task size — Copilot for daily autocomplete, Cursor for editor-centric workflows, and Claude Code for large-scale or unfamiliar codebase tasks.

0
ProgrammingDEV Community ·

Developer Builds Image-to-3D Model Pipeline Using Gemini, LangGraph, and Hunyuan3D-2

A developer has created Core3D, a full-stack application that converts a single 2D image into a usable 3D model in approximately 22 seconds. The system uses U2-Net and rembg for background removal and subject isolation, followed by Google's Gemini Flash-Lite to generate a geometric description that helps infer hidden surfaces and structure. Hunyuan3D-2, accessed via a Hugging Face ZeroGPU Space, then generates the 3D mesh based on the conditioned input. The pipeline is orchestrated with LangGraph on a FastAPI backend, while a Next.js frontend with WebGL allows users to inspect the final .GLB model directly in the browser. Mesh repair and validation are handled by Trimesh before the model is delivered to the user.

0
ProgrammingDEV Community ·

How to Build Safe AI Agents With Boundaries, Approvals, and Persistent State

A structured AI agent system goes far beyond a simple model request-response cycle, requiring an orchestration layer that governs planning, tool use, and task execution. Rather than granting models unrestricted access, developers should define explicit boundaries covering what the agent can see, what tools it can call, and which actions need human approval. An AI agent is best understood as a composite system — model plus orchestrator, state, tools, policies, and verification — with the application retaining full responsibility for authorization. Agent workflows should be organized around persistent session and task objects with clearly defined statuses such as RUNNING, WAITING_APPROVAL, and COMPLETED to keep long-running processes manageable. Explicit state transitions and continuous observation at each step are essential to prevent the agent from losing track of prior actions or executing duplicate operations.

0
ProgrammingDEV Community ·

How Engineers Can Prove Code Ownership Without Sharing Private Repositories

A software engineer with over six years of production experience argues that private repositories need not prevent candidates from demonstrating engineering ownership on their CVs. The author warns against sharing proprietary source code with prospective employers, framing such restraint as a mark of professional integrity. Instead, they advocate publishing the measurement methodology itself — using Git tools like git blame with specific flags — so that technical reviewers can assess contribution claims without ever accessing the codebase. The piece breaks down three metrics: all-branch commit counts (dismissed as inflated), production-branch commit counts scoped to tenure (better but still limited), and git blame analysis on the production branch (considered the most authoritative measure of surviving authorship). The author details how deterministic file sampling and conservative blame flags make the figures independently verifiable and harder to manipulate.

registry-mcp Tool Lets Claude Verify UK and Norwegian Companies via Official Registers · ShortSingh