Dadata ru Integration 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 Logo
Gradient Top
Gradient Middle
Gradient Bottom
divider

Supported Tools

Tools
Clean AddressTool to clean and standardize russian postal addresses.
Clean BirthdateTool to standardize and validate birthdate strings.
Clean EmailTool to standardize and validate email addresses.
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 VehicleTool to standardize and parse vehicle data fields.
Find AddressTool to find address by identifier.
Find BankTool to find bank by bic, swift, inn, or registration number.
Find Car BrandTool to find car brand by its identifier.
Find CountryTool to find country details by iso or numeric code.
Find CurrencyTool to find currency details by iso 4217 code.
Find Delivery City IDsTool to get delivery service city ids by kladr code.
Find FMS UnitTool to find passport authority (fms unit) by code.
Find FTS UnitTool to find customs (fts) office by code.
Find MKTUTool to find mktu classification details by code.
Find OKVED2Tool to find okved2 classifier entries by code.
Find Company or EntrepreneurTool to find company or individual entrepreneur details by inn, ogrn, or kpp.
Find Belarus Party by UNPTool to find a belarusian company or entrepreneur by unp.
Find Kazakhstan Company by BINTool to find kazakhstan company or entrepreneur details by bin or name.
Geolocate AddressTool to find nearest addresses 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 AddressTool to determine russian address by ip.
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 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 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 MetroTool to suggest metro stations.
Suggest MKTUTool to suggest mktu entries.
Suggest NameTool to autocomplete and suggest full names (fio).
Suggest OKPD2Tool to autocomplete and suggest russian product classification codes (okpd2).
Suggest OKTMOTool to suggest russian municipal territory codes (oktmo).
Suggest OKVED2Tool to suggest okved2 codes by text query.
Suggest PartyTool to autocomplete and suggest russian companies or entrepreneurs.
Suggest Postal UnitTool to suggest russian postal units by index or coordinates.

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

Connect Dadata ru MCP Tool with your Agent

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

Connect Dadata ru API Tool with your Agent

Python
TypeScript

Install Composio

python
pip install composio_openai
Install the Composio SDK

Initialize Composio and Create Tool Router Session

python
from openai import OpenAI
from composio import Composio
from composio_openai import OpenAIResponsesProvider

composio = Composio(provider=OpenAIResponsesProvider())
openai = OpenAI()
session = composio.create(user_id='your-user-id')
Import and initialize Composio client, then create a Tool Router session

Execute Dadata ru Tools via Tool Router with Your Agent

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

Use Dadata ru with any AI Agent Framework

Choose a Framework you want to connect Dadata ru with

OpenAI Agents SDK

OpenAI Agents SDK

Use Dadata ru MCP with OpenAI Agents SDK

Claude Agents SDK

Claude Agents SDK

Use Dadata ru MCP with Claude Agents SDK

Google ADK

Google ADK

Use Dadata ru MCP with Google ADK

Langchain

Langchain

Use Dadata ru MCP with Langchain

AI SDK

AI SDK

Use Dadata ru MCP with AI SDK

Mastra AI

Mastra AI

Use Dadata ru MCP with Mastra AI

LlamaIndex

LlamaIndex

Use Dadata ru MCP with LlamaIndex

CrewAI

CrewAI

Use Dadata ru MCP with CrewAI

Pydantic AI

Pydantic AI

Use Dadata ru MCP with Pydantic AI

Autogen

Autogen

Use Dadata ru MCP with Autogen

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
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
Letta
glean
HubSpot
Agent.ai
Altera
DataStax
Entelligence
Rolai
Context
ASU
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.