# Get Xing Profile Data in Claude via MCP

**Use case:** 

Give Claude live Xing profiles over MCP: paste profile URLs mid-chat and get full name, job title, city, country, skills and languages back.

## Input

```json
{
  "profileUrls": [
    "https://www.xing.com/profile/Andreas_Lappano",
    "https://www.xing.com/profile/Michael_Puchtler",
    "https://www.xing.com/profile/Volker_Scherer4"
  ]
}
```

## Output

```json
{
  "fullName": {
    "label": "Full name",
    "format": "string"
  },
  "jobTitle": {
    "label": "Job title",
    "format": "string"
  },
  "city": {
    "label": "City",
    "format": "string"
  },
  "countryCode": {
    "label": "Country code",
    "format": "string"
  },
  "skills": {
    "label": "Skills",
    "format": "array"
  },
  "languages": {
    "label": "Languages",
    "format": "array"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

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