Back to MCP Servers

Clarity AI MCP Server

Provider-hosted MCP server for assessing SFDR 2.0 category-level evidence for investment funds using Clarity AI's regulatory disclosure data.

Finance by Clarity AI None active
Overview

The Clarity AI SFDR Check 2.0 MCP Server is a provider-hosted Model Context Protocol endpoint that exposes Clarity AI's sustainability data and proprietary modelling for the European Commission's proposed SFDR 2.0 (Sustainable Finance Disclosure Regulation) framework. It allows AI agents and MCP-compatible clients to look up investment funds by name, ISIN, or CUSIP, run simulated Article category assessments, and translate raw contribution and exclusion flags into plain-language compliance evidence.

The server is targeted at ESG analysts, portfolio managers, and compliance teams who need to anticipate how funds may be classified under the November 2025 SFDR 2.0 proposal before final rules are published. Capabilities include fund search, ISIN-based assessment, fund-name resolution combined with assessment in a single call, and an interpretation tool that converts flag data into human readable category rationale.

The endpoint is hosted by Clarity AI at https://clarity-sfdr20-mcp.pro.clarity.ai/mcp and currently requires no authentication, which makes it straightforward to wire into Claude Desktop, Cursor, or any MCP-compatible agent. Note this is a focused regulatory-simulation server, not a general purpose ESG data API.

Tools

Tool Description
search_securities Locate funds by keyword, ISIN, or CUSIP and return identity and metadata.
sfdr20_check_by_isin Run an SFDR 2.0 simulated category assessment for a fund when the ISIN is known.
sfdr20_assess_fund_name Resolve a fund from a name or natural language query and return the interpreted SFDR 2.0 assessment in one step.
interpret_sfdr20_result Translate raw contribution and exclusion flags into a plain-language SFDR 2.0 category assessment.
Setup Guide

Prerequisites

  • An MCP-compatible client (Claude Desktop, Cursor, Claude Code, or another MCP host)
  • No API key or account is required

Server endpoint

https://clarity-sfdr20-mcp.pro.clarity.ai/mcp

Important: use the /mcp path, not the bare root URL.

Claude Desktop / Cursor config

Add the following to your MCP client configuration (e.g. claude_desktop_config.json):

{
  "mcpServers": {
    "clarity-sfdr20": {
      "url": "https://clarity-sfdr20-mcp.pro.clarity.ai/mcp"
    }
  }
}

If your client only supports stdio servers, you can bridge to the remote endpoint using mcp-remote:

{
  "mcpServers": {
    "clarity-sfdr20": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://clarity-sfdr20-mcp.pro.clarity.ai/mcp"]
    }
  }
}

Anthropic MCP Directory

Claude users can also connect via the Anthropic MCP Directory by searching for "Clarity AI" and enabling the SFDR Check 2.0 connector.

Troubleshooting

If tools do not appear in your client, confirm the endpoint URL ends with /mcp, re-save the connector, and reload the client.

Use Cases
  • Pre-screen funds in a portfolio for likely SFDR 2.0 category classification (Sustainable, Transition, ESG Collection) before final rules are published.
  • Resolve a fund mentioned by name in a research note or client email and pull back simulated Article-level evidence in one call.
  • Bulk-check a list of ISINs for sustainability contribution and exclusion flags, then have the agent draft a compliance summary.
  • Translate raw SFDR 2.0 flag output into plain-language rationale for inclusion in client reports or RFP responses.
  • Compare two funds (e.g., Pictet vs. Nordea climate funds) on their simulated SFDR 2.0 categorization side by side in an agent workflow.
Example Prompts
  • "Show the SFDR 2.0 category assessment for Nordea 1 Global Climate and Environment Fund."
  • "Search for Pictet funds and show their simulated SFDR 2.0 assessments."
  • "For ISIN LU0996182563, check flags and explain the assessment evidence in plain English."
  • "Look up the CUSIP 46434V issuance and tell me whether it would qualify as Sustainable under SFDR 2.0."
  • "Take this list of 10 ISINs and produce a table of simulated SFDR 2.0 categories with rationale."
Pros
  • Official, provider-hosted server maintained by Clarity AI, a recognized sustainability data provider.
  • No authentication or signup required, so it is trivial to wire into any MCP client.
  • Backed by Clarity AI's regulatory disclosure data and proprietary modelling of the SFDR 2.0 November 2025 proposal.
  • Combined fund-name resolution plus assessment in a single tool reduces multi-step prompting.
Limitations
  • Narrow scope: focused only on SFDR 2.0 simulated classification, not Clarity AI's broader ESG, climate, or impact datasets.
  • Results are simulated against a proposed framework and may diverge from final regulatory rules once published.
  • No write or portfolio-management capabilities; read-only lookup and interpretation.
Alternatives
  • Microsoft Clarity MCP Server (github.com/microsoft/clarity-mcp-server): unrelated product, but often surfaces in "Clarity" searches; useful for web analytics, not ESG.
  • MSCI ESG and Sustainalytics APIs: no official MCP servers, but their REST APIs can be wrapped for similar fund-level ESG lookups.
  • Community SEC EDGAR or OpenCorporates MCP servers for adjacent fund metadata research.