Model Context Protocol server
Company data your assistant can actually query
Point any MCP-compatible client at the endpoint below to give it live access to company profiles, financials, ownership, KYB checks against official registries, and contact enrichment. You sign in with your Global Database account — there is nothing to paste.
How connecting works
Three steps, then it's ready
Standard OAuth 2.1. Your client registers itself, so there are no credentials to copy anywhere.
-
Add the endpoint
Paste the URL into your assistant's connector settings.
-
Sign in
A Global Database sign-in opens in your browser. Use the account you already have.
-
Approve access
You see exactly what the assistant can read, and you can revoke it later.
Setup
Connect your assistant
Pick your client. The endpoint is the same everywhere — only where you paste it changes.
Claude Desktop or claude.ai — Settings → Connectors → Add custom connector, then paste:
Name: Global Database URL: https://mcp.globaldatabase.com/mcp
Claude Code — one command:
claude mcp add --transport http global-database https://mcp.globaldatabase.com/mcp
Settings → Connectors → Add a connector (available on Plus, Pro, Business and Enterprise), then paste:
https://mcp.globaldatabase.com/mcp
Approve the sign-in prompt and the connector is ready.
Le Chat → Connections → Custom MCP Connector. Fill in a connector name with no spaces, paste the URL, and pick OAuth2.1 as the authentication method:
Name: globaldatabase Server: https://mcp.globaldatabase.com/mcp Auth: OAuth2.1
Leave OAuth2 Advanced Settings switched off — this server registers clients automatically, so no client ID or secret is needed.
Add to ~/.cursor/mcp.json, or to .cursor/mcp.json in a workspace:
{
"mcpServers": {
"global-database": {
"url": "https://mcp.globaldatabase.com/mcp"
}
}
}
Add to .vscode/mcp.json in your workspace:
{
"servers": {
"global-database": {
"type": "http",
"url": "https://mcp.globaldatabase.com/mcp"
}
}
}
Then open the Chat view, switch to Agent mode, and the tools appear in the tools picker.
Claude Code:
claude mcp add --transport http global-database https://mcp.globaldatabase.com/mcp
Codex CLI — add to ~/.codex/config.toml:
[mcp_servers.global-database] url = "https://mcp.globaldatabase.com/mcp"
Gemini CLI — add to ~/.gemini/settings.json:
{
"mcpServers": {
"global-database": {
"httpUrl": "https://mcp.globaldatabase.com/mcp"
}
}
}
Any client that speaks MCP over streamable HTTP and supports OAuth 2.1 with dynamic client registration can connect — Windsurf, Cline, Zed, Goose and others all take the same shape of config:
{
"mcpServers": {
"global-database": {
"url": "https://mcp.globaldatabase.com/mcp"
}
}
}
The server publishes its OAuth metadata at
/.well-known/oauth-protected-resource and accepts dynamic client
registration, so a client that follows the spec needs nothing else. It is also listed
on Smithery.
23 tools, all read-only
What your assistant can look up
Every call runs against your own account and counts toward its quota. Nothing writes back.
Companies
Identify a company, then go deeper.
- get_company_by_identifiers
- get_company_by_website
- get_company_by_linkedin
- get_company_details
- get_company_financials
- get_company_ownership
- get_digital_insights
KYB & compliance
Straight from official registries.
- kyb_search
- kyb_company_details
- kyb_officers
- kyb_officers_search
- kyb_shareholders
- kyb_shareholders_search
- kyb_group_structure
- kyb_financial
People & prospecting
Find the right person and reach them.
- prospecting
- search_employees
- get_employee_details
- find_people_by_domain
- enrich_employee_contacts
Reference
Codes, taxonomies, account status.
- get_nomenclature
- read_reference
- check_api_key
Resources