Dadata ru MCP for AI Agents

Securely connect your AI agents and chatbots (Claude, ChatGPT, Cursor, etc) with Dadata ru MCP or direct API to validate addresses, enrich company profiles, standardize user data, and parse contact details through natural language.

Dadata ru logoDadata ru
Api Key

Dadata ru is a data validation and enrichment API for Russian addresses, companies, and personal data. It helps automate data entry, reduce errors, and standardize records across your workflows.

63 Tools

Try Dadata ru now

Type what you want done — sign in and watch it run live in the Tool Router playground.

TOOL ROUTER PLAYGROUND
Dadata ru
Try asking
TOOLS

Supported Tools

Every Dadata ru action and event your agent gets out of the box.

Clean Address

Clean and standardize a Russian postal address.

Clean Birthdate

Standardize and validate birthdate strings.

Clean Email

Standardize and validate an email address.

Clean Name (FIO)

Tool to standardize and parse full names (FIO), detect gender, and return grammatical cases.

Clean Passport

Tool to validate a Russian passport number against the official registry.

Clean Phone

Tool to standardize and validate phone numbers.

Clean Composite Record

Tool to standardize composite records with multiple contact data fields in a single request.

Clean Vehicle

Standardize and recognize vehicle make/model from free-form text input.

Find Address

Retrieve full Russian address details by FIAS ID, KLADR code, or cadastral number.

Find Bank

Tool to find bank by BIC, SWIFT, INN, or registration number.

Find Car Brand

Find car brand details by identifier.

Find Company By Email

Find companies by corporate email address domain.

Find Country

Tool to find country details by ISO or numeric code.

Find Court by ID

Find court by ID or code.

Find Currency

Tool to find currency details by ISO 4217 code.

Find Delivery City IDs

Retrieves delivery service city identifiers (CDEK, Boxberry, DPD) for a given Russian city by KLADR code or FIAS ID.

Find Address by FIAS ID

Find address by FIAS ID from the Federal Information Address System (FIAS/GAR).

Find FMS Unit

Look up Russian passport issuing authority (FMS unit) by subdivision code.

Find FNS Unit by Code

Find Russian tax inspection (FNS unit) by exact code or INN.

Find FTS Unit

Find a Russian Federal Customs Service (FTS) unit by its 8-digit code.

Find Medical Position By ID

Tool to find medical position by ID code.

Find MKTU

Look up MKTU (International Classification of Goods and Services/Nice Classification) items by their numeric code.

Find OKPD2 by ID

Look up OKPD2 (Russian Classification of Products by Economic Activity) entries by their exact code.

Find OKPDTR Position

Find job position by OKPDTR code.

Find OKPDTR Profession

Tool to find profession details by OKPDTR code.

Find Territory by OKTMO

Find Russian municipal territory by OKTMO code.

Find OKVED2

Look up OKVED2 (Russian Classification of Economic Activities) entries by their exact code.

Find Company or Entrepreneur

Find company or individual entrepreneur details by INN or OGRN from the Russian Federal Tax Service registry.

Find Belarus Party by UNP

Tool to find a Belarusian company or entrepreneur by UNP.

Find Kazakhstan Company by BIN

Look up Kazakhstan company or entrepreneur details by BIN (Business Identification Number).

Find Postal Office

Find Russian postal office details by postal code (index).

Find Postal Unit By ID

Find postal unit by postal code.

Geolocate Address

Tool to find nearest addresses by geographic coordinates.

Geolocate Postal Unit

Tool to find nearest postal units by geographic coordinates.

Get Profile Balance

Tool to retrieve current DaData account balance.

Get Profile Statistics

Tool to get daily aggregated usage statistics per DaData API service.

Get Reference Versions

Tool to retrieve the last update dates for DaData reference datasets (FIAS, EGRUL, banks, etc.

IP Locate Address

Geolocate a Russian IP address to determine its city/region.

Suggest Address

Tool to autocomplete and suggest addresses.

Suggest Bank

Tool to autocomplete and suggest banks by partial details.

Suggest Car Brand

Tool to suggest car brands.

Suggest Country

Tool to suggest countries based on user input.

Suggest Court

Tool to suggest Russian courts by name or location.

Suggest Currency

Tool to suggest currencies by ISO 4217 code or name.

Suggest Email

Tool to autocomplete and suggest email addresses.

Suggest FIAS Address

Tool to suggest addresses from FIAS/GAR database.

Suggest FMS Unit

Tool to autocomplete and suggest passport issuing authorities.

Suggest FNS Unit

Tool to suggest Russian tax inspection units by partial name or code.

Suggest FTS Unit

Tool to autocomplete and suggest Russian customs (FTS) units.

Suggest Medical Position

Tool to autocomplete and suggest medical positions and specialties.

Suggest Metro

Tool to suggest metro stations.

Suggest MKTU

Autocomplete and search for MKTU (Nice Classification) codes used for trademark registration.

Suggest Name

Tool to autocomplete and suggest full names (FIO).

Suggest OKPD2

Tool to autocomplete and suggest Russian product classification codes (OKPD2).

Suggest OKPDTR Position

Tool to autocomplete and suggest Russian job positions from OKPDTR classifier.

Suggest OKPDTR Profession

Tool to autocomplete and suggest professions from OKPDTR classifier.

Suggest OKTMO

Suggest Russian municipal territory codes (OKTMO) by code prefix or partial name.

Suggest OKVED2

Tool to suggest OKVED2 codes by text query.

Suggest Party

Tool to autocomplete and suggest Russian companies or entrepreneurs.

Suggest Belarus Party

Tool to autocomplete and suggest Belarusian companies or entrepreneurs.

Suggest Kazakhstan Company

Tool to autocomplete and suggest Kazakhstan companies or entrepreneurs.

Suggest Postal Office

Suggests Russian Post offices by postal code or address.

Suggest Postal Unit

Suggests Russian Post offices (Почта России) by postal code or address.

SETUP GUIDE

Connect Dadata ru MCP Tool with your Agent

1

Install Composio

typescript
npm install @composio/core ai @ai-sdk/openai @ai-sdk/mcp
Install the Composio SDK and Claude Agent SDK
2

Create Tool Router Session

typescript
import { Composio } from '@composio/core';

const composio = new Composio({ apiKey: 'your-api-key' });

console.log("Creating Tool Router session...");
const { mcp } = await composio.create('your-user-id');
console.log(`Tool Router session created: ${mcp.url}`);
Initialize the Composio client and create a Tool Router session
3

Connect to AI Agent

typescript
import { openai } from '@ai-sdk/openai';
import { experimental_createMCPClient as createMCPClient } from '@ai-sdk/mcp';
import { generateText, stepCountIs } from 'ai';

const client = await createMCPClient({
  transport: {
    type: 'http',
    url: mcp.url,
    headers: { 'x-api-key': 'your-composio-api-key' }
  }
});

const tools = await client.tools();

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  messages: [{ role: 'user', content: 'Standardize this address: Москва, ул. Тверская, д. 7' }],
  stopWhen: stepCountIs( 5 )
});

console.log(`Agent: ${text}`);
Use the MCP server with your AI agent
SETUP GUIDE

Connect Dadata ru API Tool with your Agent

1

Install Composio

typescript
npm install @composio/openai
Install the Composio SDK
2

Initialize Composio and Create Tool Router Session

typescript
import OpenAI from 'openai';
import { Composio } from '@composio/core';
import { OpenAIResponsesProvider } from '@composio/openai';

const composio = new Composio({
  provider: new OpenAIResponsesProvider(),
});
const openai = new OpenAI({});
const session = await composio.create('your-user-id');
Import and initialize Composio client, then create a Tool Router session
3

Execute Dadata ru Tools via Tool Router with Your Agent

typescript
const tools = session.tools;
const response = await openai.responses.create({
  model: 'gpt-4.1',
  tools: tools,
  input: [{
    role: 'user',
    content: 'Validate and standardize this Russian address: ул. Ленина, д. 1, Москва'
  }],
});
const result = await composio.provider.handleToolCalls(
  'your-user-id',
  response.output
);
console.log(result);
Get tools from Tool Router session and execute Dadata ru actions with your Agent

Why Use Composio?

AI Native Dadata ru Integration

  • Supports both Dadata ru MCP and direct API based integrations
  • Structured, LLM-friendly schemas for reliable tool execution
  • Rich coverage for reading, writing, and querying your Dadata ru data

Managed Auth

  • Built-in API key management for Dadata ru
  • Central place to manage and revoke Dadata ru access
  • Per-user credentials—never hard-code sensitive API keys again

Agent Optimized Design

  • Tools are tuned using real error and success rates for smarter LLM orchestration
  • Detailed execution logs so you always know what ran, when, and for whom

Enterprise Grade Security

  • Fine-grained RBAC so you control which agents and users can query Dadata ru
  • Scoped, least privilege access to Dadata ru endpoints
  • Full audit trail of agent actions for compliance and review
FAQ

Frequently asked questions

Yes, Dadata ru requires you to configure your own API key credentials. Once set up, Composio handles secure credential storage and API request handling for you.

Yes! Composio's Tool Router enables agents to use multiple toolkits. Learn more.

Composio is SOC 2 and ISO 27001 compliant with all data encrypted in transit and at rest. Learn more.

Composio maintains and updates all toolkit integrations automatically, so your agents always work with the latest API versions.

Start with Dadata ru.It takes 30 seconds.

Managed auth, hosted MCP servers, and every Dadata ru tool your agent needs.Free to start.

Start building