# Look Up US Attorneys in Claude via MCP

**Use case:** 

Use attorney lookup as a tool in Claude and other AI agents over MCP: ask for a practice area and city, get bar admissions, law school, and peer review.

## Input

```json
{
  "mode": "search",
  "keywords": [
    "family law Austin"
  ],
  "maxResultsPerKeyword": 3
}
```

## Output

```json
{
  "name": {
    "label": "Name",
    "format": "string"
  },
  "lawSchool": {
    "label": "Law school",
    "format": "string"
  },
  "admissions": {
    "label": "Bar admissions",
    "format": "string"
  },
  "firstAdmissionYear": {
    "label": "First admitted",
    "format": "integer"
  },
  "languages": {
    "label": "Languages",
    "format": "string"
  },
  "peerReview": {
    "label": "Peer review",
    "format": "object"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Martindale Lawyer Directory API](https://apify.com/johnvc/lawyer-directory-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/lawyer-directory-api) to learn more, explore other use cases, and run it yourself.