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.
Trusted by
AWS
Glean
Zoom
Airtable

30 min · no commitment · see it on your stack

Dadata ru Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Try Dadata ru now

Enter a prompt below to test the integration in our Tool Router playground. You'll be redirected to sign in and try it live.

Supported Tools

Tools
Clean AddressClean and standardize a Russian postal address.
Clean BirthdateStandardize and validate birthdate strings.
Clean EmailStandardize and validate an email address.
Clean Name (FIO)Tool to standardize and parse full names (FIO), detect gender, and return grammatical cases.
Clean PassportTool to validate a Russian passport number against the official registry.
Clean PhoneTool to standardize and validate phone numbers.
Clean Composite RecordTool to standardize composite records with multiple contact data fields in a single request.
Clean VehicleStandardize and recognize vehicle make/model from free-form text input.
Find AddressRetrieve full Russian address details by FIAS ID, KLADR code, or cadastral number.
Find BankTool to find bank by BIC, SWIFT, INN, or registration number.
Find Car BrandFind car brand details by identifier.
Find Company By EmailFind companies by corporate email address domain.
Find CountryTool to find country details by ISO or numeric code.
Find Court by IDFind court by ID or code.
Find CurrencyTool to find currency details by ISO 4217 code.
Find Delivery City IDsRetrieves delivery service city identifiers (CDEK, Boxberry, DPD) for a given Russian city by KLADR code or FIAS ID.
Find Address by FIAS IDFind address by FIAS ID from the Federal Information Address System (FIAS/GAR).
Find FMS UnitLook up Russian passport issuing authority (FMS unit) by subdivision code.
Find FNS Unit by CodeFind Russian tax inspection (FNS unit) by exact code or INN.
Find FTS UnitFind a Russian Federal Customs Service (FTS) unit by its 8-digit code.
Find Medical Position By IDTool to find medical position by ID code.
Find MKTULook up MKTU (International Classification of Goods and Services/Nice Classification) items by their numeric code.
Find OKPD2 by IDLook up OKPD2 (Russian Classification of Products by Economic Activity) entries by their exact code.
Find OKPDTR PositionFind job position by OKPDTR code.
Find OKPDTR ProfessionTool to find profession details by OKPDTR code.
Find Territory by OKTMOFind Russian municipal territory by OKTMO code.
Find OKVED2Look up OKVED2 (Russian Classification of Economic Activities) entries by their exact code.
Find Company or EntrepreneurFind company or individual entrepreneur details by INN or OGRN from the Russian Federal Tax Service registry.
Find Belarus Party by UNPTool to find a Belarusian company or entrepreneur by UNP.
Find Kazakhstan Company by BINLook up Kazakhstan company or entrepreneur details by BIN (Business Identification Number).
Find Postal OfficeFind Russian postal office details by postal code (index).
Find Postal Unit By IDFind postal unit by postal code.
Geolocate AddressTool to find nearest addresses by geographic coordinates.
Geolocate Postal UnitTool to find nearest postal units by geographic coordinates.
Get Profile BalanceTool to retrieve current DaData account balance.
Get Profile StatisticsTool to get daily aggregated usage statistics per DaData API service.
Get Reference VersionsTool to retrieve the last update dates for DaData reference datasets (FIAS, EGRUL, banks, etc.
IP Locate AddressGeolocate a Russian IP address to determine its city/region.
Suggest AddressTool to autocomplete and suggest addresses.
Suggest BankTool to autocomplete and suggest banks by partial details.
Suggest Car BrandTool to suggest car brands.
Suggest CountryTool to suggest countries based on user input.
Suggest CourtTool to suggest Russian courts by name or location.
Suggest CurrencyTool to suggest currencies by ISO 4217 code or name.
Suggest EmailTool to autocomplete and suggest email addresses.
Suggest FIAS AddressTool to suggest addresses from FIAS/GAR database.
Suggest FMS UnitTool to autocomplete and suggest passport issuing authorities.
Suggest FNS UnitTool to suggest Russian tax inspection units by partial name or code.
Suggest FTS UnitTool to autocomplete and suggest Russian customs (FTS) units.
Suggest Medical PositionTool to autocomplete and suggest medical positions and specialties.
Suggest MetroTool to suggest metro stations.
Suggest MKTUAutocomplete and search for MKTU (Nice Classification) codes used for trademark registration.
Suggest NameTool to autocomplete and suggest full names (FIO).
Suggest OKPD2Tool to autocomplete and suggest Russian product classification codes (OKPD2).
Suggest OKPDTR PositionTool to autocomplete and suggest Russian job positions from OKPDTR classifier.
Suggest OKPDTR ProfessionTool to autocomplete and suggest professions from OKPDTR classifier.
Suggest OKTMOSuggest Russian municipal territory codes (OKTMO) by code prefix or partial name.
Suggest OKVED2Tool to suggest OKVED2 codes by text query.
Suggest PartyTool to autocomplete and suggest Russian companies or entrepreneurs.
Suggest Belarus PartyTool to autocomplete and suggest Belarusian companies or entrepreneurs.
Suggest Kazakhstan CompanyTool to autocomplete and suggest Kazakhstan companies or entrepreneurs.
Suggest Postal OfficeSuggests Russian Post offices by postal code or address.
Suggest Postal UnitSuggests Russian Post offices (Почта России) by postal code or address.
Python
TypeScript

Install Composio

python
pip install composio claude-agent-sdk
Install the Composio SDK and Claude Agent SDK

Create Tool Router Session

python
from composio import Composio
from claude_agent_sdk import ClaudeSDKClient, ClaudeAgentOptions

composio = Composio(api_key='your-composio-api-key')
session = composio.create(user_id='your-user-id')
url = session.mcp.url
Initialize the Composio client and create a Tool Router session

Connect to AI Agent

python
import asyncio

options = ClaudeAgentOptions(
    permission_mode='bypassPermissions',
    mcp_servers={
        'tool_router': {
            'type': 'http',
            'url': url,
            'headers': {
                'x-api-key': 'your-composio-api-key'
            }
        }
    },
    system_prompt='You are a helpful assistant with access to Dadata ru tools.',
    max_turns=10
)

async def main():
    async with ClaudeSDKClient(options=options) as client:
        await client.query('Standardize this address: Москва, ул. Тверская, д. 7')
        async for message in client.receive_response():
            if hasattr(message, 'content'):
                for block in message.content:
                    if hasattr(block, 'text'):
                        print(block.text)

asyncio.run(main())
Use the MCP server with your AI 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

Frequently Asked Questions

Do I need my own developer credentials to use Dadata ru with Composio?

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.

Can I use multiple toolkits together?

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

Is Composio secure?

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

What if the API changes?

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

Used by agents from

Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai

Never worry about agent reliability

We handle tool reliability, observability, and security so you never have to second-guess an agent action.