Odel
India Company & Director Data

India Company & Director Data

@indotenderUpdated 6 days ago

Indian company registry research and director-related company due diligence.

Server endpointStreamable HTTPProbe failed

This is the third-party server itself — Odel doesn't run it. Hitting this URL directly talks straight to the upstream server with no auth or proxying. Connect through Odel to front it with managed auth.

India Company & Director MCP

Connect your AI assistant to The Company Atlas for Indian company registry research and company due diligence through the Model Context Protocol.

This listing is a focused entry point for:

  • Indian company searches
  • Company registration and identity checks
  • Company status, address, industry, and capital information
  • Director-related company research where available on the company profile

The MCP connection is provided by The Company Atlas. This repository does not run a separate server.

Connect

https://thecompanyatlas.com/mcp

Add this URL as a custom MCP connector in Claude, Cursor, or any MCP-compatible client. Sign in with Google when prompted.

Tools

Company_search

Search the global company registry by name, restricted to India with country: "IN".

ParameterTypeDescription
qstringCompany name or id; 4–60 characters
nameMatchModeenum, optionalcontains (default), startsWith, or endsWith
limitinteger, optionalMaximum results, 120, default 20
countryISO country code, optionalUse IN for India

Returns matching company ids, names, slugs, country codes, and active status. If no name matches, q is tried once as an exact company id.

Example:

{
  "q": "Tata",
  "country": "IN",
  "nameMatchMode": "contains",
  "limit": 20
}

Company_extended_search

Search Indian companies using additional registry fields. Filters are combined with AND logic. Include at least one criterion.

ParameterTypeDescription
countryISO country code, optionalUse IN for India
namestring, optionalCompany name
nameMatchModeenum, optionalcontains (default), startsWith, or endsWith
localNamestring, optionalLocal company name
idstring, optionalCompany id
id2string, optionalAlternative company id
slugstring, optionalCompany slug
abbrstring, optionalCompany abbreviation
entityTypestring, optionalEntity type
statusstring, optionalCompany status
activeboolean, optionalActive/inactive filter
addressstring, optionalPartial address
industryCodestring, optionalPartial industry code
industryNamestring, optionalPartial industry name
postalCodestring, optionalPartial postal code
areaIdstring, optionalPartial area id
authorizedCapitalGtenumber, optionalMinimum authorized capital
authorizedCapitalLtenumber, optionalMaximum authorized capital
paidUpCapitalGtenumber, optionalMinimum paid-up capital
paidUpCapitalLtenumber, optionalMaximum paid-up capital
incorporationDateGtestring, optionalMinimum incorporation date
incorporationDateLtestring, optionalMaximum incorporation date
formerNamestring, optionalExact former-name array entry
pageinteger, optional0-based page index, default 0
limitinteger, optionalResults per page, 1100, default 50

Returns company details including identity, status, incorporation date, address, industry, capital, postal code, and area id.

Example:

{
  "country": "IN",
  "industryName": "pharmaceutical",
  "active": true,
  "page": 0,
  "limit": 50
}

Company_get_by_id

Fetch one company profile after selecting an id from Company_search or Company_extended_search.

ParameterTypeDescription
idstringCompany primary key returned by a search

Returns the company’s core registry profile, including name, local name, entity type, status, incorporation date, address, former names, industry, authorized capital, paid-up capital, postal code, area id, and score. Returns null for an unknown id.

Example:

{
  "id": "IN..."
}

IndiaDirector_search

Search Indian company director appointments from IndiaDirectorData.

ParameterTypeDescription
cinstring, optionalIndian company CIN; an IN prefix is removed automatically
dinstring, optionalExact director DIN
directorNamestring, optionalCase-insensitive partial director name
currentOnlyboolean, optionalOnly appointments without a resignation date; default false
pageinteger, optionalPage number, minimum 1, default 1
limitinteger, optionalResults per page, 1100, default 25

Provide at least one of cin, din, or directorName. Returns { total, page, limit, data }. Each row includes the company CIN, director DIN and name, designation, and join and resignation dates.

Example:

{
  "directorName": "Sharma",
  "currentOnly": true,
  "limit": 25
}

Director data

Use IndiaDirector_search to find director appointments by company CIN, director DIN, or director name. Use the company tools to identify the relevant Indian company and retrieve its registry profile.

Example prompts

  • "Find Indian companies containing 'Tata' and show their active status."
  • "Search for active Indian pharmaceutical companies incorporated after 2015."
  • "Find the company profile for this Indian registration id."
  • "What company and director information is available for this Indian company?"

Setup — Claude

  1. Go to claude.ai/customize/connectors
  2. Click Add custom connector
  3. Name it India Company & Director Data and paste https://thecompanyatlas.com/mcp
  4. Save and sign in with Google when prompted

Setup — Cursor / other MCP clients

Add to your MCP config:

{
  "mcpServers": {
    "india-company": {
      "url": "https://thecompanyatlas.com/mcp"
    }
  }
}