crunchbase

crunchbase

3.4

The Crunchbase MCP Server provides a RESTful API for integrating Crunchbase data into applications.

The Crunchbase MCP Server offers a RESTful API that allows you to integrate Crunchbase data into your web and mobile applications. It provides detailed information about organizations, people, funding rounds, acquisitions, IPOs, and more, enabling you to create dynamic applications with rich data insights.

Features

  • {'name': 'Comprehensive Data Access', 'description': 'Access a wide range of data endpoints, including organizations, people, categories, and locations.'}
  • {'name': 'Efficient Data Retrieval', 'description': 'Utilize collection endpoints and item detail endpoints with pagination for efficient data handling.'}
  • {'name': 'Customizable Queries', 'description': 'Refine searches by specifying relationship types and customizing queries for specific data points.'}
  • {'name': 'Optimized Pagination', 'description': 'Use key set pagination for faster and more reliable data traversal.'}

Usage with Different Platforms

nodejs

javascript
const axios = require('axios');

async function getOrganizations() {
  try {
    const response = await axios.get('https://api.crunchbase.com/v3.1/organizations', {
      headers: {
        'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
      }
    });
    console.log(response.data);
  } catch (error) {
    console.error(error);
  }
}

getOrganizations();

python

python
import requests

headers = {
    'Authorization': 'Bearer YOUR_ACCESS_TOKEN'
}

response = requests.get('https://api.crunchbase.com/v3.1/organizations', headers=headers)

if response.status_code == 200:
    print(response.json())
else:
    print('Failed to retrieve data')