# Get Startup Company Data in Claude via MCP

**Use case:** 

Use startup lookup as a tool in Claude and other AI agents over MCP: pass a profile URL, get focus areas, country, founded year, and scores back.

## Input

```json
{
  "companyUrls": [
    "https://www.ventureradar.com/organisation/Theneo/b40ae154-6867-456f-a215-d98fdae0048c",
    "https://www.ventureradar.com/organisation/Chipax/cbf17c41-e4bd-4f3c-b60a-8bc915f8aa75",
    "https://www.ventureradar.com/organisation/OmniGarden/12a1ea54-a663-43f7-88d5-dd8710332177"
  ]
}
```

## Output

```json
{
  "companyName": {
    "label": "Company name",
    "format": "string"
  },
  "country": {
    "label": "Country",
    "format": "string"
  },
  "founded": {
    "label": "Founded",
    "format": "integer"
  },
  "areasOfFocus": {
    "label": "Areas of focus",
    "format": "array"
  },
  "analystScore": {
    "label": "Analyst score",
    "format": "integer"
  },
  "website": {
    "label": "Website",
    "format": "string"
  },
  "profileUrl": {
    "label": "Profile URL",
    "format": "string"
  }
}
```

## About this Actor

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