Server data from the Official MCP Registry
Search and enrich US property, owner, people, and company data for sales and lead generation.
Search and enrich US property, owner, people, and company data for sales and lead generation.
Remote endpoints: streamable-http: https://mcp.dealmachine.com
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
Endpoint verified · Requires authentication · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-dealmachine-dealmachine": {
"url": "https://mcp.dealmachine.com"
}
}
}From the project's GitHub README.
DealMachine CLI (dm) -- property intelligence from the command line.
A standalone Commander.js CLI that talks to the DealMachine REST API. Provides 17 command groups covering agent guidance, authentication, property search, people lookup, enrichment, comps, list management, and developer utilities. Compiles to a single ESM bundle via tsc.
This package has zero @dealmachine/* dependencies -- it is a self-contained binary that communicates exclusively through the public API.
This repository is also the public distribution package for the DealMachine MCP server and DealMachine skill.
https://mcp.dealmachine.comhttps://api.docs.dealmachine.comhttps://dealmachine.com/settings/developerhttps://dealmachine.com/privacy-policyhttps://dealmachine.com/terms-of-servicesupport@dealmachine.comThe MCP server supports OAuth 2.1 for ChatGPT, Claude, Cursor, Codex, and other compatible clients. It can also use a DealMachine API key in developer clients that support bearer-token configuration.
The plugin package includes:
server.jsonExample requests:
Direct skill installation:
npx skills add DealMachine/dealmachine-cli
agents, agents guide, agents playbooklogin, logout, whoamiconfig get, config set, config pathaccountusagesearch, count, get, ids, exportsearch, count, get, ids, exportaddress, latlng, apn, email, phone, namesearch, create, get, update, delete, build, import, items, add, remove, exportsearch, getautocomplete, validatelicense add, license list, license removenpm install -g dealmachine
dm login
The canonical implementation package is @dealmachine/cli. The dealmachine package is the short install alias and provides the same dm command.
cd packages/cli
npm run build
node dist/index.js whoami
cd packages/cli
npm link
dm --version
The binary entry is dist/index.js, declared in package.json under bin.dm. Requires Node.js >= 18.
The CLI supports two authentication methods.
The default dm login command uses the OAuth 2.0 Device Authorization Grant (RFC 8628). This is the recommended flow for interactive use:
dm login
POST /v1/auth/device/code with client ID dealmachine-next-cli and your machine's hostname.--no-browser).POST /v1/auth/device/token at the server-specified interval.~/.dealmachine/config.json.The polling handles all RFC 8628 responses: authorization_pending, slow_down (backs off by 5s), access_denied, and expired_token.
# Skip auto-opening the browser
dm login --no-browser
# Target a specific environment
dm login --env local
dm login --env staging
For CI pipelines, scripts, or local development, pass an API key directly:
dm login --key dm_sk_live_abc123...
The key is verified against GET /v1/account before being stored. If verification fails, the CLI exits with a non-zero code.
If you do not have an API key yet, use dm signup, dm plans, and dm checkout first. Public plan checkout only accepts self-serve Basic and Pro prices from the shared plan catalog and is capped at 60,000 monthly data credits.
If you are already logged in, you can switch the target API environment without logging out:
dm login --env local # Switch to http://localhost:3001/v1
dm login --env staging # Switch to https://api-staging.v2.dealmachine.com/v1
dm login --env production # Switch to https://api.v2.dealmachine.com/v1
dm logout
Removes the config file at ~/.dealmachine/config.json.
Credentials are stored at ~/.dealmachine/config.json with file permissions 0600 (owner read/write only). The config directory ~/.dealmachine/ is created with mode 0700.
{
"apiKey": "dm_sk_live_...",
"keyId": "key_abc123",
"organizationId": 42,
"organizationName": "Acme Corp",
"organizationSlug": "acme-corp",
"apiEnvironment": "production"
}
The CLI checks these environment variables for API URL resolution (in priority order):
| Variable | Purpose | Example |
|---|---|---|
DM_API_URL / DEALMACHINE_API_URL | Direct URL override | http://localhost:3001/v1 |
DM_ENV / DEALMACHINE_ENVIRONMENT | Environment name | local, staging, or production |
If none are set, the CLI falls back to the apiEnvironment field in the config file, then defaults to production.
| Environment | URL |
|---|---|
local | http://localhost:3001/v1 |
staging | https://api-staging.v2.dealmachine.com/v1 |
production | https://api.v2.dealmachine.com/v1 |
dm agentsPrint concise guidance for agents using the CLI. This is the recommended first command when an agent has access to dm but has not loaded the DealMachine Playbook yet.
dm agents
dm agents --json
The guide tells agents to use --json and --quiet, verify auth, fetch live filters and fields before searches, count before credit-consuming work, and confirm expected credit usage before fetching records or exporting.
dm agents guidePrint the same concise agent guidance explicitly.
dm agents guide
dm agents guide --json
dm agents playbookPrint the bundled DealMachine Playbook Markdown. Agents should load this before translating natural language property, people, contact, enrichment, list, export, comps, or credit-usage requests into CLI commands.
dm agents playbook
dm agents playbook --json
dm agents skill # alias
The public CLI source keeps its bundled Playbook at playbook/PLAYBOOK.md. Monorepo builds can also copy packages/playbooks/playbook/SKILL.md. The build writes the selected source to dist/agents/dealmachine-playbook.md, so the command works from a published CLI package as well as a local source checkout.
dm signupCreate a public API account and receive an API key:
dm signup developer@example.com --first-name Ada --last-name Lovelace --phone-number +15551234567
dm signup developer@example.com --login
dm plansList public self-serve Basic and Pro plans:
dm plans
dm plans --json
dm checkoutCreate a Stripe checkout session using a price ID from dm plans:
dm checkout --price-id price_xxx_monthly
dm loginAuthenticate with your DealMachine account.
dm login # Device auth flow (opens browser)
dm login --no-browser # Device auth, manual code entry
dm login --key dm_sk_live_abc123 # Direct API key
dm login --env local # Target local API
| Option | Description |
|---|---|
--no-browser | Do not automatically open the browser |
--key <api-key> | Login directly with an API key (skips browser) |
--env <environment> | API environment: local, staging, or production |
dm logoutRemove stored credentials.
dm logout
dm whoamiShow current authentication status.
dm whoami # Show stored credentials
dm whoami --verify # Verify credentials against the API
| Option | Description |
|---|---|
--verify | Verify credentials with the API |
dm config get [key]Get a configuration value, or display all values when no key is given.
dm config get # Show all config values
dm config get apiEnvironment # Show specific value
dm config get apiKey # Shows truncated key (first 20 chars)
Available keys: organizationName, organizationSlug, organizationId, apiEnvironment, keyId, apiKey.
dm config set <key> <value>Set a configuration value. Only apiEnvironment is editable.
dm config set apiEnvironment local
dm config set apiEnvironment staging
dm config set apiEnvironment production
dm config pathPrint the absolute path to the config file.
dm config path
# /Users/you/.dealmachine/config.json
dm accountDisplay account information including organization name, ID, creation date, and auth type.
dm account
Output:
Account
────────────────────────────────────────
Organization: Acme Corp
Org ID: 42
Created: Jan 15, 2025
Auth Type: api_key
dm usageShow credit usage for the current billing cycle.
dm usage # Human-readable table
dm usage --json # Machine-readable JSON
Output:
Credit Usage
──────────────────────────────────────────────────
Plan: Pro
Cycle: Mar 1, 2026 — Mar 31, 2026
Credits: 4,200 / 10,000 (42%)
Remaining: 5,800
Breakdown:
Properties: 3,100
People: 1,100
dm properties searchSearch properties with filters and locations.
# Inline JSON body
dm properties search --body '{
"locations": [{"type": "zip_code", "code": "78704"}],
"filters": [{"filter_id": "property_type", "operator": "is_any_of", "value": ["single_family"]}]
}'
# From a file
dm properties search -f search.json
# Pipe from stdin
cat search.json | dm properties search
# Machine-readable output
dm properties search -f search.json --json
# Query Builder protocol filters
dm properties search --include-lists 123,456 --exclude-previously-exported --body '{"locations":[]}'
| Option | Description |
|---|---|
--body <json> | Request body as JSON string |
-f, --file <path> | Read request body from a JSON file |
--include-lists <ids> | Comma-separated list IDs to include |
--exclude-lists <ids> | Comma-separated list IDs to exclude |
--exclude-previously-exported | Exclude records already exported by your organization |
--bigquery-data-environment <n> | Query Builder data environment (1 production, 2 staging, 3 development) |
--json | Output as JSON |
dm properties countCount properties matching filters without consuming credits.
dm properties count --body '{"locations": [{"type": "state", "code": "TX"}]}'
dm properties count -f filters.json --json
dm properties get <id>Get a single property by its DealMachine ID.
dm properties get prop_12345
dm properties get prop_12345 --contact-audience owners_and_family
dm properties get prop_12345 --contact-audience none
dm properties get prop_12345 --fields estimated_value,equity
dm properties get prop_12345 --json
| Option | Description |
|---|---|
--contact-audience <audience> | owners, owners_and_family, renters, residents, all, none |
--fields <csv> | Comma-separated property field IDs from dm fields |
--json | Output as JSON |
Property lookup defaults to owners. If you only need property data, use --contact-audience none. This omits contacts and avoids people credits.
dm properties ids [ids...]Get multiple properties by their IDs in a single batch request.
# Positional arguments
dm properties ids prop_111 prop_222 prop_333
# Via JSON body
dm properties ids --body '{"ids": ["prop_111", "prop_222"]}'
# From file
dm properties ids -f ids.json --contact-audience owners
dm properties ids -f ids.json --contact-audience none
| Option | Description |
|---|---|
--body <json> | Request body as JSON string |
-f, --file <path> | Read request body from a JSON file |
--contact-audience <audience> | Include contacts: owners, owners_and_family, renters, residents, all, none |
--json | Output as JSON |
dm properties exportExport properties as CSV (up to 1,000,000 records). Returns signed download URLs.
dm properties export -f search.json
dm properties export -f search.json --require-phone --scrub-dnc
dm properties export --body '{"locations": [...]}' --mobile-only --json
| Option | Description |
|---|---|
--body <json> | Request body as JSON string |
-f, --file <path> | Read request body from a JSON file |
--require-phone | Only include records where the contact has a phone number |
--require-email | Only include records where the contact has an email address |
--mobile-only | Only include wireless phone numbers |
--landline-only | Only include landline phone numbers |
--scrub-dnc | Exclude contacts on the Do Not Call registry |
--json | Output as JSON |
dm people searchSearch people with filters and locations.
dm people search --body '{
"locations": [{"type": "zip_code", "code": "78704"}],
"filters": [{"filter_id": "age", "operator": "between", "value": [30, 50]}]
}'
dm people search -f people-search.json --json
dm people search --include-lists 123 --exclude-lists 456 --exclude-previously-exported --body '{"locations":[]}'
dm people countCount people matching filters without consuming credits.
dm people count -f filters.json
dm people get <id>Get a single person by their DealMachine ID.
dm people get per_12345
dm people get per_12345 --include-properties --property-limit 20
dm people get per_12345 --fields estimated_household_income,estimated_value
dm people get per_12345 --json
| Option | Description |
|---|---|
--include-properties | Include associated properties |
--property-limit <n> | Maximum associated properties to return, from 1 through 100 |
--fields <csv> | Comma-separated field IDs from dm fields |
--json | Output as JSON |
dm people ids [ids...]Get multiple people by their IDs in a single batch request.
dm people ids per_111 per_222 per_333
dm people ids --body '{"ids": ["per_111", "per_222"]}' --include-properties --property-limit 20
dm people ids per_111 per_222 --fields estimated_household_income,estimated_value
| Option | Description |
|---|---|
--include-properties | Include associated properties |
--property-limit <n> | Maximum associated properties to return per person, up to 100 |
--fields <csv> | Comma-separated field IDs from dm fields |
dm people exportExport people as CSV (up to 1,000,000 records). Returns signed download URLs.
dm people export -f search.json --require-email
dm people export -f search.json --mobile-only --scrub-dnc --json
Contact filter options are the same as dm properties export.
All enrichment commands support three input modes: a positional argument for single-item lookup, --body/-f for JSON payloads, and -f with a .csv file for batch enrichment from CSV. Batches larger than 250 items are automatically chunked. Every enrichment command accepts --fields <csv> and sends the selected field IDs to the API. Email, phone, and name matches also include a free property_count; use --include-properties when you need the property records themselves.
dm enrich address [address]Look up a property by street address.
# Single address
dm enrich address "123 Main St, Austin, TX 78704"
dm enrich address "123 Main St, Austin, TX 78704" --contact-audience none
dm enrich address "123 Main St, Austin, TX 78704" --fields estimated_value,equity
# Batch from JSON
dm enrich address --body '{"data": [{"full_address": "123 Main St, Austin, TX"}]}'
# Batch from CSV (auto-detected by .csv extension)
dm enrich address -f addresses.csv --contact-audience owners
# CSV columns: full_address (or street, city, state, zip)
| Option | Description |
|---|---|
--body <json> | Request body as JSON string |
-f, --file <path> | Read from JSON or CSV file |
--contact-audience <audience> | owners, owners_and_family, renters, residents, none |
--fields <csv> | Comma-separated field IDs from dm fields |
--json | Output as JSON |
Use --contact-audience none whenever you only need the property. The response omits contacts and consumes zero people credits.
dm enrich latlng [coords]Look up a property by latitude/longitude coordinates.
dm enrich latlng 30.25,-97.75
dm enrich latlng -f coordinates.csv --fields estimated_value,equity --contact-audience none
# CSV columns: latitude, longitude (or lat, lng/lon/long)
dm enrich apn [apn]Look up a property by Assessor's Parcel Number. Narrow results with --state or --zip.
dm enrich apn "0123-456-789" --state TX
dm enrich apn -f parcels.csv --zip 78704 --fields estimated_value,equity
# CSV columns: apn (or parcel_id, parcel_number)
| Option | Description |
|---|---|
--state <code> | Narrow by state (e.g., TX) |
--zip <code> | Narrow by ZIP code |
--contact-audience <audience> | owners, owners_and_family, renters, residents, none |
--fields <csv> | Comma-separated field IDs from dm fields |
dm enrich email [email]Look up a person by email address.
dm enrich email jane@example.com
dm enrich email jane@example.com --include-properties
dm enrich email -f emails.csv --fields estimated_household_income,estimated_value --json
# CSV columns: email (or email_address)
| Option | Description |
|---|---|
--include-properties | Include associated properties |
--fields <csv> | Comma-separated field IDs from dm fields |
dm enrich phone [phone]Look up a person by phone number.
dm enrich phone 5125551234
dm enrich phone -f phones.csv --include-properties --fields estimated_value
# CSV columns: phone (or phone_number)
| Option | Description |
|---|---|
--include-properties | Include associated properties |
--fields <csv> | Comma-separated field IDs from dm fields |
dm enrich name [name]Look up people by name. Supports "First Last" or just "Last" format.
dm enrich name "Jane Doe"
dm enrich name "Jane Doe" --state TX --estimate-cost
dm enrich name "Doe" --state TX --page 2
dm enrich name "Jane Doe" --zip 78704 --include-properties
dm enrich name "Jane Doe" --fields estimated_household_income,estimated_value
| Option | Description |
|---|---|
--state <code> | Narrow by state |
--zip <code> | Narrow by ZIP code |
--include-properties | Include associated properties |
--fields <csv> | Field IDs from dm fields |
--estimate-cost | Preview count and credits |
--page <n> | Page number |
--per-page <n> | Results per page |
dm comps [property_ids...]Find comparable properties (sales comps) for one or more properties.
# Single property with defaults
dm comps prop_12345
# Multiple properties with options
dm comps prop_12345 prop_67890 --radius 2 --timeframe 12months --limit 50
# Full control via JSON body
dm comps --body '{
"property_ids": ["prop_12345"],
"location": {"type": "radius", "radius_miles": 1.5},
"criteria": {"timeframe": "6months", "sort_by": "match", "limit": 25}
}'
| Option | Description |
|---|---|
--body <json> | Request body as JSON string |
-f, --file <path> | Read request body from a JSON file |
--radius <miles> | Search radius in miles (default: 1) |
--timeframe <period> | 3months, 6months, 12months, all (default: 6months) |
--limit <n> | Max comps per property (default: 25, max: 100) |
--sort-by <field> | distance, price, date, match (default: match) |
--sort-direction <dir> | asc, desc (default: desc) |
--include-foreclosures | Include foreclosure sales |
--json | Output as JSON |
Output includes subject property details, value estimation with confidence interval, summary statistics (average/median price, price per sqft), and a table of comparable properties.
dm lists searchSearch and list all saved lists.
dm lists search
dm lists search --search "Austin" --source-type properties --sort newest
dm lists search --page 2 --per-page 50 --json
| Option | Description |
|---|---|
--search <term> | Search lists by name |
--source-type <type> | properties or people |
--sort <order> | newest, oldest, name, count |
-p, --page <n> | Page number |
--per-page <n> | Results per page |
dm lists createCreate a new list.
# Empty list
dm lists create --name "Austin Leads"
# Pre-populated with record IDs (max 250)
dm lists create --name "Hot Leads" --source-type properties --ids 123,456,789
# With search filters for a list build
dm lists create --name "TX SFR" -f search-filters.json
| Option | Description |
|---|---|
--name <name> | List name (required) |
--source-type <type> | properties or people |
--ids <csv> | Comma-separated record IDs to pre-populate (max 250) |
--body <json> | Request body as JSON (filters/locations) |
-f, --file <path> | Read request body from a JSON file |
dm lists get <id>Get details of a specific list including status, progress, and error state.
dm lists get list_abc123
dm lists update <id>Rename a list.
dm lists update list_abc123 --name "New Name"
dm lists delete <id>Delete a list and all its items.
dm lists delete list_abc123
dm lists build <id>Build a list from search filters. This is an asynchronous operation -- poll with dm lists get for status.
dm lists build list_abc123 -f search-filters.json
dm lists import <id>Import record IDs into an existing list.
dm lists import list_abc123 --ids 111,222,333 --source-type properties
dm lists import list_abc123 -f import-payload.json
dm lists items <id>List items in a list with pagination.
dm lists items list_abc123
dm lists items list_abc123 --page 2 --per-page 100 --json
dm lists add <id>Add items to a list by ID.
dm lists add list_abc123 --ids 111,222,333
dm lists add list_abc123 --ids 111,222 --id-type internal_property_id
| Option | Description |
|---|---|
--ids <csv> | Comma-separated list of IDs to add (required) |
--id-type <type> | internal_property_id or internal_person_id |
dm lists remove <id>Remove items from a list by ID.
dm lists remove list_abc123 --ids 111,222,333
dm lists export <id>Export list items. Credits are charged per record.
dm lists export list_abc123
dm lists export list_abc123 --fields "full_address,estimated_value,owner_name" --anchor property
| Option | Description |
|---|---|
--fields <csv> | Comma-separated list of fields to export |
--anchor <type> | property or person |
dm filtersList available search filters with their types, operators, and groupings.
dm filters
dm filters --source-type properties --search "bed"
dm filters --group-id building_information --json
| Option | Description |
|---|---|
--source-type <type> | properties or people |
--group-id <id> | Filter by group ID |
--search <term> | Search filters by name |
--page <n> | Page number |
--per-page <n> | Results per page |
dm fieldsList available data fields with filterable/sortable flags.
dm fields
dm fields --source-type people --search "phone"
dm fields --group-id contact_info --json
| Option | Description |
|---|---|
--source-type <type> | properties or people |
--group-id <id> | Filter by group ID |
--search <term> | Search fields by name |
--page <n> | Page number |
--per-page <n> | Results per page |
Search and retrieve DealMachine locations.
dm locations search -q "Harris" --type county --state TX --json
dm locations get loc_city_48106 --json
dm locations autocomplete remains available as a deprecated alias for dm addresses autocomplete.
dm activity searchSearch past API activity with type filters and free-text search.
dm activity search -t search_properties enrich_address
dm activity search -q "Austin" --page 2
dm activity search --body '{"types": ["search_properties"], "page": 1}'
| Option | Description |
|---|---|
--body <json> | Request body as JSON string |
-f, --file <path> | Read request body from a JSON file |
-t, --types <types...> | Filter by activity types (space-separated) |
-q, --query <text> | Free-text search across activity |
--page <n> | Page number |
--per-page <n> | Results per page |
dm activity get <id>Get full details of a specific activity record, including the original request, result summary, and entity IDs (people and properties).
dm activity get act_abc123
dm activity get act_abc123 --json
dm addresses autocomplete <query>Return free, bounded address and normalized location suggestions.
dm addresses autocomplete "1200 Barton Springs" --state TX
dm addresses autocomplete "saint louis 63101" --scope location --limit 5 --json
| Option | Description |
|---|---|
--scope <scope> | all, address, or location, default all |
--state <code> | Prefer a two-letter state abbreviation |
--limit <n> | Maximum suggestions, default 5 and max 10 |
--latitude <number> | Latitude for nearby ranking, requires longitude |
--longitude <number> | Longitude for nearby ranking, requires latitude |
--json | Output raw JSON response |
Autocomplete does not request fields, perform enrichment, or consume data credits.
dm addresses validate [address]Validate and standardize addresses via USPS.
# Single address
dm addresses validate "123 Main St, Austin, TX 78704"
# Batch via JSON
dm addresses validate --body '{"data": [{"full_address": "123 Main St, Austin TX"}]}'
# From file
dm addresses validate -f addresses.json --json
Output shows each address as valid, corrected (with corrections listed), or invalid (with reason).
Local development utilities that operate directly against the Docker MySQL container (dealmachine-next-mysql). These require the local database to be running (npm run db:start from the repo root).
dm dev license add <key_id>Add a license to an API key in the local database.
dm dev license add key_abc123 --type state --code TX
dm dev license add key_abc123 --type zip_code --code 78704
dm dev license add key_abc123 --type unlimited
dm dev license add key_abc123 --type county --code 48453 --expires 2026-12-31
| Option | Description |
|---|---|
--type <type> | state, county, zip_code, or unlimited (required) |
--code <code> | Location code: state abbreviation, FIPS code, or ZIP |
--expires <date> | Expiration date in ISO format |
dm dev license list [key_id]List all licenses, optionally filtered by key ID.
dm dev license list
dm dev license list key_abc123
dm dev license remove <license_id>Remove a license by its numeric ID.
dm dev license remove 42
Every command supports these flags:
| Flag | Description |
|---|---|
--json | Output as machine-readable JSON (for scripting and piping) |
--quiet | Suppress spinners and decorative output for agents/scripts |
--help | Show usage information for any command |
--version | Show the CLI version |
Commands that accept a request body support three input methods, checked in this order:
--body <json> -- Inline JSON string.-f, --file <path> -- Read from a JSON file. Enrichment commands also accept .csv files for batch processing.# Inline
dm properties search --body '{"locations": [...]}'
# File
dm properties search -f query.json
# Pipe
cat query.json | dm properties search
# CSV enrichment (enrich commands only)
dm enrich address -f addresses.csv
The enrich commands detect .csv files by extension and auto-parse them. Expected column names per command:
| Command | Required Columns | Alternative Column Names |
|---|---|---|
enrich address | full_address | or street + city, state, zip |
enrich latlng | latitude, longitude | lat, lng/lon/long |
enrich apn | apn | parcel_id, parcel_number |
enrich email | email | email_address |
enrich phone | phone | phone_number |
Batches larger than 250 items are automatically chunked with progress spinners. If an export limit is reached mid-batch, the CLI stops and returns results collected so far.
packages/cli/
scripts/
copy-agent-assets.mjs # Bundles the Playbook Markdown into dist/agents
src/
index.ts # Program entrypoint -- registers all 17 command groups
lib/
config.ts # Read/write ~/.dealmachine/config.json (mode 0600)
client.ts # HTTP client wrapper (apiRequest, formatDate, getApiKey)
api.ts # Device auth flow client (requestDeviceCode, pollForToken, verifyCredentials)
output.ts # Formatting helpers (printTable, printJson, printKeyValue, parseRequestBody)
commands/
agents.ts # dm agents -- agent guide and Playbook output
login.ts # dm login -- device auth + API key login
logout.ts # dm logout -- remove credentials
whoami.ts # dm whoami -- show/verify auth status
config.ts # dm config -- get, set, path
account.ts # dm account -- show account info
usage.ts # dm usage -- credit usage
properties.ts # dm properties -- search, count, get, ids, export
people.ts # dm people -- search, count, get, ids, export
enrich.ts # dm enrich -- address, latlng, apn, email, phone, name
comps.ts # dm comps -- comparable properties
lists.ts # dm lists -- full CRUD + build, import, export
filters.ts # dm filters -- list available filters
fields.ts # dm fields -- list available fields
activity.ts # dm activity -- search, get
addresses.ts # dm addresses -- validate
dev.ts # dm dev -- local license management
dist/ # Compiled output (ESM)
package.json
tsconfig.json
Documentation truncated — see the full README on GitHub.
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.