# Leadgen MCP (remote · hermes.adrianhomelab.com)

Romanian business-registry lookup, director search, contact extraction, and WHOIS/DNS audit.

- Trust score: 62/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-20

## Components

- remote · `hermes.adrianhomelab.com`: 62/100 (this document), [markdown](https://verifymcp.io/servers/darksider4all-leadgen-mcp/hermes.md), [page](https://verifymcp.io/servers/darksider4all-leadgen-mcp/hermes)

## Channel facts

- Endpoint: `https://hermes.adrianhomelab.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-20.

- **Endpoint Security**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 4 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 69/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 446 tokens (~111/item across 4 items; 4 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 67/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

## Install

### Claude

```bash
claude mcp add --transport http darksider4all-leadgen-mcp https://hermes.adrianhomelab.com/mcp
```

### Codex

```toml
[mcp_servers.darksider4all-leadgen-mcp]
url = "https://hermes.adrianhomelab.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "darksider4all-leadgen-mcp": {
      "type": "remote",
      "url": "https://hermes.adrianhomelab.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add darksider4all-leadgen-mcp --url https://hermes.adrianhomelab.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  darksider4all-leadgen-mcp:
    url: "https://hermes.adrianhomelab.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "darksider4all-leadgen-mcp": {
      "type": "http",
      "url": "https://hermes.adrianhomelab.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-20 (score 62, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-18 (score 61, +1)

No change was recorded against any check on this day. Stability & Change Management went from 13 to 17. That category is still filling its 30-day observation window: 4 days of observed history at the previous scan, 5 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-16 (score 60, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-14 (score 59, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-13 (score 58)

First indexed and scored.

## MCP tools (4)

### `lookup_business` (~145 tokens)

Search the Romanian business registry (official ONRC data) for companies.

    Data source: official ONRC open-data snapshot (data.gov.ro), loaded locally.
    Name queries use a ranked FTS5 index and are diacritic-insensitive
    ('paval' matches 'PAVĂL'); digit queries match the CUI exactly, falling
    back to a CUI prefix match when the exact code is unknown.

    Args:
        query: Company name or CUI (tax ID) to search for.
        max_results: Maximum number of companies to return (1-100).

Input parameters:

- `max_results` (integer)
- `query` (string, required)

### `lookup_director` (~125 tokens)

Find Romanian companies by director or legal representative name.

    Searches the ONRC reprezentanti table (persoana_imputernicita) via a
    ranked FTS5 index; diacritic-insensitive ('popescu' matches 'POPESCU').
    Returns companies with their director names and roles.

    Args:
        name: Director / representative name to search for (e.g. "Ion Popescu").
        max_results: Maximum number of companies to return (1-100).

Input parameters:

- `max_results` (integer)
- `name` (string, required)

### `extract_contacts` (~79 tokens)

Crawl a website and extract emails, phone numbers, and social profiles.

    Args:
        website: The website URL to crawl (e.g. "example.com" or "https://example.com").
        max_pages: Maximum number of pages to crawl (1-20).

Input parameters:

- `max_pages` (integer)
- `website` (string, required)

### `lookup_domain` (~97 tokens)

Perform WHOIS + DNS + SPF/DMARC lookup for a domain.

    Args:
        domain: Domain name to look up (e.g. "example.com").
        include_dns: Include DNS records (A, MX, NS, TXT, etc.).
        include_security: Include SPF/DMARC email-security check.

Input parameters:

- `domain` (string, required)
- `include_dns` (boolean)
- `include_security` (boolean)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/darksider4all-leadgen-mcp/hermes#diagnostics

## Score history

- 2026-08-20: 62
- 2026-08-19: 61
- 2026-08-18: 61
- 2026-08-17: 60
- 2026-08-16: 60
- 2026-08-15: 59
- 2026-08-14: 59
- 2026-08-13: 58

## Links

- Remote endpoint: https://hermes.adrianhomelab.com/mcp
- Repository: https://github.com/darksider4all/leadgen-mcp
- Changelog RSS feed: https://verifymcp.io/servers/darksider4all-leadgen-mcp/hermes.xml
- Changelog JSON feed: https://verifymcp.io/servers/darksider4all-leadgen-mcp/hermes.json
- HTML version of this page: https://verifymcp.io/servers/darksider4all-leadgen-mcp/hermes
