Skip to main content

Unofficial Python client and stdio MCP server for Eight person search workflows.

Project description

eight-mcp-community

Unofficial Python client and stdio MCP server for Eight person-search workflows.

[!WARNING] This project is unofficial and not affiliated with Eight or Sansan. It uses private/internal web endpoints that can change without notice. Keep cookies, passwords, and raw contact data out of GitHub, logs, issues, prompts, and public reports.

Design

This package follows the same idea as note-mcp-community, but the core is Python:

  • PyPI/project name: eight-mcp-community
  • Python import package: eight
  • CLI commands: eight-mcp-community and eight-mcp
  • MCP server: stdio, suitable for local/private agent use

The core client is reusable without an LLM:

from eight import EightClient

client = EightClient.from_default_config()
result = client.search_person("鈴木太郎 東京商事")
print(result.to_safe_dict())

The MCP server is a thin wrapper over the same EightClient.

Install / run

Local development:

uv sync --dev
uv run eight-mcp-community --help
uv run eight-mcp-community serve

Run directly without installing permanently:

uvx eight-mcp-community serve

MCP client configuration:

{
  "mcpServers": {
    "eight": {
      "command": "uvx",
      "args": ["eight-mcp-community", "serve"]
    }
  }
}

Local development MCP config:

{
  "mcpServers": {
    "eight": {
      "command": "uv",
      "args": [
        "--directory",
        "/path/to/eight-mcp-community",
        "run",
        "eight-mcp-community",
        "serve"
      ]
    }
  }
}

Authentication

Supported credential lookup order:

  1. EIGHT_COOKIE — Cookie header
  2. EIGHT_SESSION_COOKIE — alternate Cookie header
  3. EIGHT_MCP_COMMUNITY_CONFIG — path to config JSON with a cookie field
  4. Default config file: ~/.config/eight-mcp-community/config.json
  5. EIGHT_COOKIE_FILE — Mozilla/Netscape cookie jar path
  6. Optional env login: EIGHT_EMAIL + EIGHT_PASSWORD

For remote/server use, prefer a cookie config or env secret. The package does not require browser automation.

Create a config file from a trusted Cookie header:

eight-mcp-community set-cookie 'your 8card.net Cookie header'
eight-mcp-community auth-status

Or use env:

EIGHT_COOKIE='your 8card.net Cookie header' eight-mcp-community auth-check

If EIGHT_EMAIL and EIGHT_PASSWORD are set, the client can perform the same password-login flow used by the existing Hermes skill and save resulting cookies into the default config as a Cookie header. MFA/challenge responses are reported as structured errors and are not bypassed.

CLI

eight-mcp-community auth-status
eight-mcp-community auth-check
eight-mcp-community set-cookie 'Cookie header'
eight-mcp-community clear-cookie
eight-mcp-community search '鈴木'
eight-mcp-community search '鈴木' --always-network
eight-mcp-community serve

All command output is JSON except --help.

MCP tools

Authentication/setup tools:

  • eight_auth_status — report whether auth is configured and from where, without leaking secrets
  • eight_auth_check — verify access to Eight /myhome and CSRF extraction
  • eight_set_cookie — store a Cookie header in the local config file; optionally verify first
  • eight_clear_cookie — delete the stored config-file cookie
  • eight_login_help — explain supported setup paths

Search tools:

  • eight_search_person — search registered/exchanged cards first; search public Eight network only if no registered-card hit, unless alwaysNetwork is true
  • eight_search_registered_cards — search only registered/exchanged business cards
  • eight_search_network_people — search only public Eight network people, keeping public results separate from private cards

Returned data is intentionally minimal and LLM-safe: source, name, company, department, title, updated date, and confidence/source bucket. Raw HTML, raw JSON, cookies, tokens, email addresses, phone numbers, and bulk exports are not returned.

Privacy and safety

  • Do not use this project for bulk contact export or contact-list harvesting.
  • Do not commit cookies, config files, raw API dumps, screenshots, or credentials.
  • Treat registered business-card results as private context; cite public sources for public-facing reports.
  • Eight business-card data can be stale. Corroborate current affiliation/title with public sources when accuracy matters.

Development

uv sync --dev
uv run ruff check .
uv run pytest

Manual MCP smoke test:

printf '%s\n' \
'{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-06-18","capabilities":{},"clientInfo":{"name":"smoke-test","version":"0.0.0"}}}' \
'{"jsonrpc":"2.0","method":"notifications/initialized","params":{}}' \
'{"jsonrpc":"2.0","id":2,"method":"tools/list","params":{}}' \
| timeout 5s uv run eight-mcp-community serve

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

eight_mcp_community-0.1.0.tar.gz (66.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

eight_mcp_community-0.1.0-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file eight_mcp_community-0.1.0.tar.gz.

File metadata

  • Download URL: eight_mcp_community-0.1.0.tar.gz
  • Upload date:
  • Size: 66.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for eight_mcp_community-0.1.0.tar.gz
Algorithm Hash digest
SHA256 1234cf5c5b9efb389a8028a35c3e8069f23dba2d91fe32dca9ee212fe37b1154
MD5 0b200e18b3271a2c36754b6e0055ed83
BLAKE2b-256 3d6d2d47ae03346d024476a558fd7fdc06ed1677e0d62d3710b91d0c7ca4df54

See more details on using hashes here.

Provenance

The following attestation bundles were made for eight_mcp_community-0.1.0.tar.gz:

Publisher: publish.yml on new-village/eight-mcp-community

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file eight_mcp_community-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for eight_mcp_community-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 bfd6a0e88ef46c0ad4ad64b09c503ceff9c114d2d8c42643ad69a41a5de4b75d
MD5 4ea0cb45032ec593ed38c55f191cba0d
BLAKE2b-256 d6b16808ff481996c297a637b7dace6f86ea029135d43509faba72f11db76e39

See more details on using hashes here.

Provenance

The following attestation bundles were made for eight_mcp_community-0.1.0-py3-none-any.whl:

Publisher: publish.yml on new-village/eight-mcp-community

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page