# com.mambabuilt/mcp-team-page-people-extractor (npm · @mambalabsdev/mcp-team-page-people-extractor)

Extract the people a company publishes on its own team, leadership or about page.

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

## Components

- npm · `@mambalabsdev/mcp-team-page-people-extractor`: 71/100 (this document), [markdown](https://verifymcp.io/servers/com-mambabuilt-mcp-team-page-people-extractor/mambalabsdev-mcp-team-page-people-extractor.md), [page](https://verifymcp.io/servers/com-mambabuilt-mcp-team-page-people-extractor/mambalabsdev-mcp-team-page-people-extractor)

## Channel facts

- Registry: `npm`
- Package: `@mambalabsdev/mcp-team-page-people-extractor`
- Version: `1.0.1`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, 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-17.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 30 of 96 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 48/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 3 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 67/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 554 tokens (~554/item across 1 items; 1 tools + 0 resources), over budget; trim descriptions and params.
  - 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**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add com-mambabuilt-mcp-team-page-people-extractor -- npx -y @mambalabsdev/mcp-team-page-people-extractor
```

### Codex

```bash
codex mcp add com-mambabuilt-mcp-team-page-people-extractor -- npx -y @mambalabsdev/mcp-team-page-people-extractor
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "com-mambabuilt-mcp-team-page-people-extractor": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@mambalabsdev/mcp-team-page-people-extractor"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add com-mambabuilt-mcp-team-page-people-extractor --command npx --arg -y --arg @mambalabsdev/mcp-team-page-people-extractor
```

### Hermes

```yaml
mcp_servers:
  com-mambabuilt-mcp-team-page-people-extractor:
    command: "npx"
    args: ["-y", "@mambalabsdev/mcp-team-page-people-extractor"]
```

### Other

```json
{
  "mcpServers": {
    "com-mambabuilt-mcp-team-page-people-extractor": {
      "command": "npx",
      "args": [
        "-y",
        "@mambalabsdev/mcp-team-page-people-extractor"
      ]
    }
  }
}
```

## 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-17 (score 71, +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-15 (score 70, +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-13 (score 69, +2)

- [security] Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet.
- [functional regression] Capabilities: pass → unverified
- [functional regression] Tool coverage: 100 → unverified
- [functional improvement] Stability: unverified → 0.10
- [functional] First check of Schema quality: unverified
- [functional] Package version: 1.0.0 → 1.0.1

### 2026-08-11 (score 67, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-08-10 (score 66)

First indexed and scored.

## MCP tools (1)

### `extract_team_page_people` (~554 tokens)

Extract Team Page People

Extract the people a company publishes on its own team, leadership or about page, and return their names, titles and the page each one came from. It also reports which pages it actually reached, so an empty result tells you whether the company publishes nobody or whether the site could not be read, which are very different answers. output_grain person returns one row per person and is what most tables want; output_grain company returns one row per company with a people_json array plus the first five names and titles flattened into columns. seniority_filter narrows to founders and C level, or adds VPs, directors and heads. People are ordered by seniority before max_people applies, and anything dropped is logged with a count. include_emails is off by default and should usually stay off: across the domains tested, the addresses published on team pages were role mailboxes, placeholders and literal template strings rather than real people, so when it is on the emails come back on the company row only and are never attached to a named person. Results are cached for 14 days. Nothing here scrapes LinkedIn or any profile network; it reads only what the company published itself. Requires an APIFY_TOKEN and consumes Apify credits. Read only.

Input parameters:

- `domain` (string, required): A single company domain, for example swishdata.com. Protocol and path are stripped.
- `include_emails` (boolean): Off by default and you should probably leave it off. Across three domains that published an email on a team page we found one role mailbox, one placeholder in example content, and one literal user@do…
- `max_people` (string): Sent as a string so Clay can map a column into it. Clamped to 1 to 200. People are ordered by seniority before the cap applies, and anything dropped is logged with the count. Default: "50".
- `output_grain` (string): person returns one row per person, which is the default and what most Clay tables want. company returns one row per company with a people_json array plus the first five names and titles flattened int…
- `seniority_filter` (string): all keeps everyone the page published. executive keeps founders and C-level only. leadership adds VPs, directors and heads. Default: "all".
- `skipCache` (string): false uses the 14 day result cache. true re-crawls the company from scratch. Default: "false".

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/com-mambabuilt-mcp-team-page-people-extractor/mambalabsdev-mcp-team-page-people-extractor#diagnostics

## Score history

- 2026-08-17: 71
- 2026-08-16: 70
- 2026-08-15: 70
- 2026-08-14: 69
- 2026-08-13: 69
- 2026-08-12: 67
- 2026-08-11: 67
- 2026-08-10: 66

## Links

- npm package: https://www.npmjs.com/package/@mambalabsdev/mcp-team-page-people-extractor
- Socket report: https://socket.dev/npm/package/@mambalabsdev/mcp-team-page-people-extractor
- Repository: https://github.com/mambalabsdev/mcp-team-page-people-extractor
- Changelog RSS feed: https://verifymcp.io/servers/com-mambabuilt-mcp-team-page-people-extractor/mambalabsdev-mcp-team-page-people-extractor.xml
- Changelog JSON feed: https://verifymcp.io/servers/com-mambabuilt-mcp-team-page-people-extractor/mambalabsdev-mcp-team-page-people-extractor.json
- HTML version of this page: https://verifymcp.io/servers/com-mambabuilt-mcp-team-page-people-extractor/mambalabsdev-mcp-team-page-people-extractor
