MDataAccess
Paid business, people, company, lead, and web intelligence for autonomous AI agents.
Quality & Safety
Findings (3)
- LOWin enrich_company
- LOWin enrich_person
- LOWin find_decision_maker
Based on automated analysis of tool definitions and protocol compliance.
Context Cost
This is the approximate number of tokens consumed each time the server's tools are loaded into a model's context. Higher counts reduce the attention available for other tasks.
One-Click Install
Add this to your `claude_desktop_config.json` file:
{
"mcpServers": {
"mdataaccess": {
"url": "https://api.mdataaccess.com/mcp/"
}
}
}Remote endpoints
https://api.mdataaccess.com/mcp/streamable-httpTool inventory
Tools (7)
🟢read_webpage(url)
Prepare a paid request to read clean text from a known public webpage URL.
Input Schema
{
"type": "object",
"properties": {
"url": {
"title": "Url",
"type": "string"
}
},
"required": [
"url"
],
"title": "read_webpageArguments"
}Output Schema
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"title": "read_webpageDictOutput"
}⚪enrich_company(name, website)
Prepare a paid company enrichment request when a company name or domain is known.
Input Schema
{
"type": "object",
"properties": {
"name": {
"default": "",
"title": "Name",
"type": "string"
},
"website": {
"default": "",
"title": "Website",
"type": "string"
}
},
"title": "enrich_companyArguments"
}Output Schema
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"title": "enrich_companyDictOutput"
}⚪enrich_person(email, linkedin_url, name, company)
Prepare a paid person enrichment request when an email, LinkedIn URL, or name is known.
Input Schema
{
"type": "object",
"properties": {
"email": {
"default": "",
"title": "Email",
"type": "string"
},
"linkedin_url": {
"default": "",
"title": "Linkedin Url",
"type": "string"
},
"name": {
"default": "",
"title": "Name",
"type": "string"
},
"company": {
"default": "",
"title": "Company",
"type": "string"
}
},
"title": "enrich_personArguments"
}Output Schema
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"title": "enrich_personDictOutput"
}🟢search_people(sql)
Prepare a paid PDL SQL person-search request. Exactly one profile is returned by the API.
Input Schema
{
"type": "object",
"properties": {
"sql": {
"title": "Sql",
"type": "string"
}
},
"required": [
"sql"
],
"title": "search_peopleArguments"
}Output Schema
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"title": "search_peopleDictOutput"
}🟢search_companies(sql)
Prepare a paid PDL SQL company-search request. Exactly one company is returned by the API.
Input Schema
{
"type": "object",
"properties": {
"sql": {
"title": "Sql",
"type": "string"
}
},
"required": [
"sql"
],
"title": "search_companiesArguments"
}Output Schema
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"title": "search_companiesDictOutput"
}🟢find_decision_maker(company, function)
Prepare a paid request for one senior decision-maker at a known company and function.
Input Schema
{
"type": "object",
"properties": {
"company": {
"title": "Company",
"type": "string"
},
"function": {
"title": "Function",
"type": "string"
}
},
"required": [
"company",
"function"
],
"title": "find_decision_makerArguments"
}Output Schema
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"title": "find_decision_makerDictOutput"
}🟢find_lead(company, function)
Prepare a paid request for one compact sales-ready lead at a known company and function.
Input Schema
{
"type": "object",
"properties": {
"company": {
"title": "Company",
"type": "string"
},
"function": {
"title": "Function",
"type": "string"
}
},
"required": [
"company",
"function"
],
"title": "find_leadArguments"
}Output Schema
{
"type": "object",
"additionalProperties": {
"type": "string"
},
"title": "find_leadDictOutput"
}