Py Nameplate — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Py Nameplate (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Python library, MCP server, and REST API for parsing unstructured US contact strings into structured components.
You have messy contact data:
Dr. John Smith Jr. 742 Evergreen Terrace
JANE DOE 123 MAIN ST APT 2B BOSTON MA 02101
Smith, Robert "Bob" 456 Oak Ave, Chicago, IL 60601You need structured data you can actually use.
One function that handles it all:
from nameplate import parse
result = parse("Dr. John Smith Jr. 742 Evergreen Terrace, Springfield, IL 62701")
# Name components
result.name.prefix # "Dr."
result.name.first # "John"
result.name.last # "Smith"
result.name.suffix # "Jr."
# Address components
result.address.street_number # "742"
result.address.street_name # "Evergreen"
result.address.street_type # "Terrace"
result.address.city # "Springfield"
result.address.state # "IL"
result.input_type # "contact"
result.validated # True (city/state in database)The parse() function uses token-based segmentation to automatically find the boundary between name and address:
Dr. John Smith Jr. 742 Evergreen Terrace
└───── name ─────┘ └────── address ─────┘Segmentation algorithm:
Address parsing works backwards from the end:
Street-based enhancement fills in missing city/state:
pip install py-nameplateOr with uv:
uv add py-nameplatefrom nameplate import parse
# Auto-detects input type
result = parse("123 Main St, Boston, MA 02101")
result.input_type # "address"
result = parse("Dr. Jane Doe")
result.input_type # "name"
result = parse("John Smith 123 Main St, Boston, MA 02101")
result.input_type # "contact"# Without enhancement - street alone has no city/state
result = parse("100 Dunwoody Club Dr")
result.address.city # ""
result.address.state # ""
# With enhancement - city/state auto-filled if street is unique in database
result = parse("100 Dunwoody Club Dr", enhance=True)
result.address.city # "Atlanta" (auto-filled)
result.address.state # "GA" (auto-filled)
result.enhanced # True# Smart title case
result = parse("PATRICK O'BRIEN 123 MAIN ST", normalize=True)
result.name.last # "O'Brien" (not "O'brien")
result.address.city # "Boston" (not "BOSTON")
result = parse("RONALD MCDONALD", normalize=True)
result.name.last # "McDonald" (not "Mcdonald")from nameplate import parse_batch
texts = [
"Dr. John Smith",
"123 Main St, Boston, MA 02101",
"Jane Doe 456 Oak Ave, Chicago, IL 60601",
]
result = parse_batch(texts, enhance=True)
result.total # 3
result.parsed_count # 3
result.enhanced_count # number with enhanced data| Format | Example |
|---|---|
| Simple | John Smith |
| With prefix | Dr. Jane Doe, Lt. Col. John Smith |
| With suffix | John Smith Jr., Jane Doe PhD |
| Last, First | Smith, John |
| With nickname | Robert "Bob" Smith |
| Name particles | Ludwig van Beethoven, Juan de la Vega |
| Roman numerals | Henry Ford III |
| Format | Example |
|---|---|
| Standard | 123 Main St, Boston, MA 02101 |
| With unit | 456 Oak Ave Apt 2B, Chicago, IL 60601 |
| PO Box | PO Box 789, Miami, FL 33101 |
| Directional | 100 N Main St, Denver, CO 80202 |
| ZIP+4 | 123 Main St, Boston, MA 02101-1234 |
Any combination of name followed by address:
John Smith 123 Main St, Boston, MA 02101
Dr. Jane Doe Jr. PO Box 456, Seattle, WA 98101Use with Claude Desktop or Claude.ai as an MCP tool.
Add to ~/.claude/claude_desktop_config.json:
{
"mcpServers": {
"nameplate": {
"command": "uvx",
"args": ["nameplate"]
}
}
}{
"mcpServers": {
"nameplate": {
"type": "url",
"url": "https://nameplate.mcp.danheskett.com/"
}
}
}| Tool | Description |
|---|---|
parse | Parse any input with auto-detection and optional enhancement |
parse_batch | Batch parse multiple inputs |
"Parse this: Dr. John Smith 742 Evergreen Terrace, Springfield, IL"
"Parse with enhancement: Jane Doe 100 Dunwoody Club Dr"
"Parse these contacts: John Smith, 123 Main St Boston MA, Jane Doe 456 Oak Ave Chicago IL"
Use the REST API for direct HTTP access without MCP.
Base URL: https://nameplate.mcp.danheskett.com
| Endpoint | Method | Description |
|---|---|---|
/api/parse | POST | Parse a single input |
/api/parse/batch | POST | Parse multiple inputs |
/health | GET | Health check |
{
"text": "Dr. John Smith 123 Main St, Boston, MA 02101",
"normalize": false,
"enhance": false
}For batch requests, use texts (array) instead of text:
{
"texts": ["John Smith", "123 Main St, Boston, MA 02101"],
"normalize": true,
"enhance": true
}Basic parse:
curl -X POST https://nameplate.mcp.danheskett.com/api/parse \
-H "Content-Type: application/json" \
-d '{"text": "Dr. John Smith 123 Main St, Boston, MA 02101"}'Parse with enhancement:
curl -X POST https://nameplate.mcp.danheskett.com/api/parse \
-H "Content-Type: application/json" \
-d '{"text": "Jane Doe 100 Dunwoody Club Dr", "enhance": true}'Batch parsing:
curl -X POST https://nameplate.mcp.danheskett.com/api/parse/batch \
-H "Content-Type: application/json" \
-d '{"texts": ["John Smith", "123 Main St, Boston, MA 02101"], "normalize": true}'Health check:
curl https://nameplate.mcp.danheskett.com/health| Parameter | Type | Description |
|---|---|---|
text | str | Input string to parse |
normalize | bool | Apply smart title case |
enhance | bool | Fill in missing data from database |
| Field | Type | Description |
|---|---|---|
input_type | str | "name", "address", or "contact" |
name | NameOutput | Parsed name components |
address | AddressOutput | Parsed address components |
parsed | bool | True if parsing succeeded |
validated | bool | True if city/state found in database |
enhanced | bool | True if data was enhanced |
enhanced_fields | list[str] | Fields that were enhanced |
errors | list[str] | Any parsing errors |
| Field | Type | Description |
|---|---|---|
prefix | str | Dr., Mr., Mrs., Rev., etc. |
first | str | First/given name |
middle | str | Middle name(s) |
last | str | Last/family name |
suffix | str | Jr., Sr., III, PhD, etc. |
nickname | str | Nickname if present |
| Field | Type | Description |
|---|---|---|
street_number | str | House/building number |
street_name | str | Street name |
street_type | str | St, Ave, Blvd, etc. |
street_direction | str | N, S, E, W, etc. |
unit_type | str | Apt, Suite, Unit, etc. |
unit_number | str | Unit/apartment number |
city | str | City name |
state | str | Two-letter state code |
zip_code | str | 5 or 9 digit ZIP |
git clone https://github.com/dannyheskett/py-nameplate.git
cd py-nameplate
uv sync --extra dev
# Run tests
uv run pytest
# Lint
uv run ruff check src/ tests/
uv run ruff format src/ tests/The hosted MCP server does not store, log, or retain any data. All parsing happens in memory. See the source code to verify.
BSD-3-Clause
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.