dealdata-net
3.5
DealData.net is a powerful MCP server designed to provide detailed fundraising profiles for private companies, hedge funds, private equity funds, and venture capital funds.
DealData.net serves as an invaluable tool for developers, analysts, and businesses looking to gain insights into the fundraising activities of various entities. By leveraging the DealData.net server, users can uncover connections between people, companies, and funds, and enhance their CRM systems with up-to-date contact information of companies and funds that are actively fundraising.
Features
- Fundraising Profiles: Access comprehensive profiles of private companies, hedge funds, private equity funds, and venture capital funds.
- Connection Mapping: Discover complex relationships between individuals, companies, and funds.
- CRM Integration: Populate your CRM with accurate phone numbers and addresses of fundraising entities.
- Advanced Filtering: Filter new filings based on state, company or fund type, and amount raised.
- Cost-effective: Gain access to valuable fundraising data at a fraction of the cost of other platforms.
MCP Tools
- Get Industries: Retrieve all available industries or company types in the database.
- Get Fund Types: Access a list of available fund types for filing feeds and searches.
- Broker Search: Find brokers that match a given name fragment, with a response limit to manage large datasets.
- Person Search: Search for individuals by name fragments, ensuring queries are narrow enough to meet response size limitations.
- Company/Fund Search: Locate companies or funds by name fragments, adhering to response size constraints.
- Filing Profile: Obtain a full filing profile using an internal filing ID.
- Person Profile: Retrieve a complete profile for a person using a person ID.
- Broker Profile: Access a full broker profile using a broker ID or FINRA Central Registration Depository (CRD) number.
- Company Profile: Get a comprehensive profile for a company or fund using its CIK number.
- Filing Feed/Search: Generate a filing feed based on date range, entity type, amount raised, and state. Ensure queries are sufficiently narrow to comply with response size restrictions.
Usage with Different Platforms
python
python
import requests
url = 'https://api.dealdata.net/v1/search'
params = {
'query': 'venture capital',
'type': 'fund',
'state': 'CA'
}
response = requests.get(url, params=params)
data = response.json()
print(data)
javascript
javascript
const axios = require('axios');
axios.get('https://api.dealdata.net/v1/search', {
params: {
query: 'venture capital',
type: 'fund',
state: 'CA'
}
})
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error('Error fetching data:', error);
});