search_artist
Find artists in the BNDY database by name, with optional region filtering and confidence scoring based on name similarity.
Instructions
Search for existing artists in BNDY database by name. Pre-filters by name similarity, then scores by Levenshtein distance. Confidence = (1 - edit_distance/max_length) * 100.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Artist name to search for | |
| region | No | Region filter (e.g., "North East", "Manchester"). Hard filter: only returns artists whose location contains this string (empty/unknown locations pass through). | |
| limit | No | Max results to return (default: 20, max: 50). Set to 0 for unlimited. | |
| minConfidence | No | Minimum confidence threshold 0-100 (default: 50). Results below this are excluded. |