# YC Companies MCP (`aicatraz/yc-companies-mcp`) Actor

Company records for Y Combinator directory companies (about 6200+). Fields include name, batch, batch\_code (W26/S26/F25/Sp26), status, one\_liner, industry, jobs (title/location/url), news, github\_url, and website. Standby MCP. Not an official Y Combinator product.

- **URL**: https://apify.com/aicatraz/yc-companies-mcp.md
- **Developed by:** [AI Catraz](https://apify.com/aicatraz) (community)
- **Categories:** AI, MCP servers, Lead generation
- **Stats:** 1 total users, 0 monthly users, 0.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $3.00 / 1,000 mcp tool calls

This Actor is paid per event and usage. You are charged both the fixed price for specific events and for Apify platform usage.

Learn more: https://docs.apify.com/actors/running/actors-in-store.md#pay-per-event

## What's an Apify Actor?

An Actor is a serverless cloud program that runs on the Apify platform. It has two run modes.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.

Apify vocabulary and the platform model are defined once, in the agent quickstart at https://apify.com/agents.md.

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.

Do not guess an integration path. Every one of them is in the agent quickstart at https://apify.com/agents.md: the Apify MCP server, Agent Skills with the Apify CLI, the JavaScript and Python clients, the REST API, and the account-free path for an agent with no human to sign in. It also carries the rule on stating cost before the first paid run.

For examples already wired to this Actor's own input schema, see the [API](#api) section below.

Each client library has reference documentation the quickstart does not restate: [JavaScript/TypeScript](https://docs.apify.com/api/client/js/docs.md) (`npm install apify-client`) and [Python](https://docs.apify.com/api/client/python/docs.md) (`pip install apify-client`).

# README

## YC Companies MCP

Company records for Y Combinator directory companies (about 6,200+).

Each row is one company. Jobs are first-class when the company is hiring. News links and GitHub URLs are included when present.

### Fields

| Field | Meaning |
|---|---|
| `record_id` | Stable id (`yc_<id>`) |
| `name` / `slug` | Company name and directory slug |
| `batch` | YC batch (example: `Winter 2024`) |
| `batch_code` | Short batch code (example: `W24`, `S26`, `F25`, `Sp26`) |
| `status` | Directory status (example: `Active`, `Public`) |
| `one_liner` | Short description |
| `industry` / `subindustry` | Industry labels |
| `team_size` | Team size when listed |
| `website` | Company website |
| `locations` / `regions` | Location strings |
| `tags` | Directory tags when present |
| `is_hiring` | Whether the company is marked hiring |
| `has_jobs` / `jobs_count` | Whether job listings are attached |
| `jobs` | Job records: `title`, `location`, `url`, plus type/role/salary when present |
| `news` / `news_count` | News items (`title`, `url`, `date`) when present |
| `github_url` | Company GitHub org/user URL when listed |
| `yc_url` | Official YC company page for this company |
| `record_status` | `active` or `stale` |

### Tools

MCP: `https://aicatraz--yc-company-records.apify.actor/mcp`

| Tool | Output |
|---|---|
| `company_stats` | Counts, hiring coverage, batch rollups |
| `list_batches` | Known batches with company counts |
| `list_companies` | Paginated records (filter by `batch`, `batch_code`, status, industry, `is_hiring`, `has_jobs`) |
| `get_company` | One record by `record_id` or slug |
| `search_companies` | Search name, one-liner, tags, industry, jobs |
| `export_companies` | JSON or JSONL export |

See the Apify Store pricing panel for current event charges.

### Example

```json
{
  "record_id": "yc_5",
  "name": "CircuitHub",
  "slug": "circuithub",
  "batch": "Winter 2012",
  "batch_code": "W12",
  "status": "Active",
  "one_liner": "On-Demand Electronics Manufacturing",
  "industry": "Industrials",
  "website": "https://circuithub.com",
  "is_hiring": true,
  "has_jobs": true,
  "jobs_count": 5,
  "jobs": [
    {
      "title": "Full-Stack Robotics Engineer",
      "location": "Deerfield, MA, US / Remote (US)",
      "url": "https://www.ycombinator.com/companies/circuithub/jobs/bUPM5eq-full-stack-robotics-engineer"
    }
  ],
  "news": [],
  "github_url": "https://github.com/circuithub",
  "yc_url": "https://www.ycombinator.com/companies/circuithub",
  "record_status": "active"
}
```

### Updates

Standby serves the current store over MCP. Input `mode=refresh` rebuilds company records and attaches jobs when listed.

### Notes

- Independent aicatraz dataset, not an official Y Combinator product
- Jobs and news URLs live only inside those nested objects

# Actor input Schema

## `mode` (type: `string`):

standby = serve MCP HTTP at /mcp (default). refresh = rebuild company records from the public YC companies directory and public company pages (jobs/news/github when present), write records, push stats to dataset, then exit (no MCP server).

## Actor input object example

```json
{
  "mode": "standby"
}
```

# Actor output Schema

## `mcpServer` (type: `string`):

Streamable HTTP MCP endpoint while the Actor run is live in Standby.

## `companies` (type: `string`):

Company rows produced by mode=refresh (and available to MCP tools in Standby).

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("aicatraz/yc-companies-mcp").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("aicatraz/yc-companies-mcp").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print(f"💾 Check your data here: https://console.apify.com/storage/datasets/{run.default_dataset_id}")
for item in client.dataset(run.default_dataset_id).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call aicatraz/yc-companies-mcp --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "type": "http",
            "url": "https://mcp.apify.com/?tools=fetch-actor-details,aicatraz/yc-companies-mcp"
        }
    }
}
```

The hosted server signs you in with OAuth on first connect, so no API token belongs in this config. Clients without OAuth support can send an `Authorization: Bearer <APIFY_API_TOKEN>` header instead, using a token from API & Integrations in Apify Console (https://console.apify.com/settings/integrations).

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/RqPOcp95bLCDgiPEf/builds/G0LM6duuKDk09OQEb/openapi.json
