zei-world-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@zei-world-mcpCompare Hopaal and Balzac Paris on ESG scores"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
zei-world-mcp
An MCP server that exposes ESG/CSR data from Zei World to LLMs. Browse sectors, search companies, compare ESG scores, and explore detailed evaluation criteria — all through natural language.
Tools
Tool | Description |
| List all ESG/CSR sectors |
| List activities (sub-categories) within a sector |
| List ranked companies in an activity (paginated) |
| Search for a company by name |
| Get a company's ESG profile (E/S/G scores, classifications) |
| Get detailed evaluation criteria for a company in a category |
| Compare 2–5 companies side by side |
| Get the full ranking within an activity, optionally by category |
Related MCP server: mcp-edgar
Quick start
npm install
npm run buildStdio (local MCP client)
npm startUse with any MCP-compatible client (e.g. Claude Desktop). Add to your client config:
{
"mcpServers": {
"zei-world": {
"command": "node",
"args": ["/absolute/path/to/zei-world-mcp/build/index.js"]
}
}
}HTTP (local testing)
npm run start:httpServer listens on http://localhost:3000/mcp. Stateless mode — every POST gets a fresh server instance.
curl -X POST http://localhost:3000/mcp \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"test","version":"0.1"}}}'Docker
npm run build
docker build -t zei-world-mcp .
docker run -p 3000:3000 zei-world-mcpVercel
The project includes a serverless handler at api/mcp.ts with a vercel.json config. Deploy by connecting the repo to Vercel — the endpoint will be available at /mcp.
Examples
Once connected to an MCP client, you can ask questions in natural language. Here are a few things you can try:
What ESG sectors are available on Zei World?
Uses list_sectors to return all 31 sectors.
Show me the activities in the food & agriculture sector
Uses list_activities to list sub-categories like organic farming, breweries, dairy, etc.
Search for "Hopaal"
Uses search_company to find the sustainable fashion brand and return its ID.
What's the ESG profile of Comme Avant?
Uses get_company_profile to show their scores (72% on Environment) and classifications across E/S/G.
How does Les 2 Marmottes score on environmental criteria?
Uses get_company_criteria with category Environnement to show each criterion, its coefficient, and score.
Compare Hopaal and Balzac Paris on their ESG scores
Uses compare_companies to display a side-by-side comparison of both fashion brands.
Who are the top-ranked eco-friendly banks?
Uses list_activities to find banking, then get_activity_ranking to list OnlyOne, Goodvest, Green-Got, and Helios.
Show me the governance ranking for cosmetics brands
Chains list_activities to find the right activity, then get_activity_ranking with category Gouvernance.
Project structure
src/
index.ts # Stdio entry point
server.ts # createServer() factory (shared by stdio + HTTP)
local-http.ts # Local HTTP server for testing
types.ts # Zod schemas and TypeScript types
cache.ts # In-memory cache
fetcher.ts # HTTP fetcher for zei.world
tools/ # One file per MCP tool
scraper/ # HTML scrapers for zei.world pages
api/
mcp.ts # Vercel serverless handlerDisclaimer
This server works by scraping the public zei.world website. It relies heavily on the current HTML structure of the site and may break without warning if Zei World changes their pages. This project is not affiliated with or endorsed by Zei World.
License
MIT
Available Tools
8 toolscompare_companiesA
Compare 2-5 companies side by side. Returns ESG scores, classifications, and metadata for each company.
| Name | Required | Description | Default |
|---|---|---|---|
| companyIds | Yes | Array of 2-5 company pro IDs to compare |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden of disclosing behavior. It states the tool returns ESG scores, classifications, and metadata, which implies a read-only comparison. However, it does not disclose potential error behavior, sorting order, or any other side effects, leaving some ambiguity.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence that immediately conveys the core functionality and output. Every word adds value, with no filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's low complexity (one array parameter) and the lack of an output schema, the description adequately covers the essential return values ('ESG scores, classifications, and metadata for each company'). It could be slightly more explicit about output formatting, but it is sufficiently complete for a comparison tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides 100% coverage for the single parameter 'companyIds' with a clear description ('Array of 2-5 company pro IDs to compare'). The tool description adds no additional parameter-level meaning beyond what the schema documents, so the baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Compare'), the resource ('2-5 companies'), and the comparison mode ('side by side'). It also outlines the returned content (ESG scores, classifications, metadata), which distinguishes it from single-company tools like get_company_profile.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'Compare 2-5 companies side by side' gives clear context for when to use the tool and implies it is for multi-entity comparison rather than single-company lookup. However, it does not explicitly mention when not to use it or name alternative sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_activity_rankingA
Get the ranking of all companies within the same activity as the specified company. Optionally filter by ESG category.
| Name | Required | Description | Default |
|---|---|---|---|
| category | No | ESG category to rank by. If omitted, ranks by average of all 3 scores. | |
| companyId | Yes | Company pro ID (used to identify the activity) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It only states that it gets a ranking, but does not disclose how ranking is computed, what data is returned (e.g., scores, company names), or any edge-case behavior. This is minimal behavioral disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences fully convey the core action and the optional filter. No redundant words; the structure front-loads the main purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Without an output schema, the description should clarify what the ranking looks like (e.g., sorted list with scores, whether it includes the company itself). It does not, leaving a significant gap for an agent to know what to expect from the response.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% and includes detailed descriptions for both parameters. The description's mention of an optional ESG category adds no new meaning beyond the schema, which already explains the category enum and the default average ranking. Baseline 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('Get'), the resource ('ranking of all companies within the same activity'), and the optional filter ('by ESG category'). This distinguishes it from sibling tools like list_companies_by_activity, which list companies without ranking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies when to use the tool: when you need a ranked list of companies sharing an activity with a specified company. It provides clear context (companyId identifies the activity) and an optional category filter, though it does not explicitly name alternatives or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_company_criteriaA
Get detailed evaluation criteria for a company in a specific ESG category (Environnement, Social, or Gouvernance). Returns criterion names, coefficients, and scores.
| Name | Required | Description | Default |
|---|---|---|---|
| category | Yes | ESG category: Environnement, Social, or Gouvernance | |
| companyId | Yes | Company pro ID |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the return shape ('criterion names, coefficients, and scores') but does not explicitly address read-only behavior, error handling, or authentication requirements. For a get operation, this is moderate transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences with no redundant information. It front-loads the verb and resource, and the second sentence adds valuable return details without fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple tool with only two parameters and no output schema. The description covers both the input scope (company and ESG category) and the expected output, making it complete enough for an agent to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema provides full coverage for both parameters, including descriptions and an enum for the category. The description does not add parameter-level meaning beyond what the schema already offers, so the baseline of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and the specific resource: 'detailed evaluation criteria for a company in a specific ESG category.' It also lists what is returned, distinguishing it from sibling tools like get_company_profile and get_activity_ranking.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage when evaluation criteria are needed, but it does not explicitly state when to use this tool versus alternatives or provide exclusions. No comparison with sibling tools is given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_company_profileA
Get a company's ESG profile including E/S/G scores, classifications, sector, activity, and verification date.
| Name | Required | Description | Default |
|---|---|---|---|
| companyId | Yes | Company pro ID (from search or listing) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the data fields returned, which is useful. However, it does not mention any required permissions, whether the operation is purely read-only, or any potential side effects. For a simple get tool, this is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that names the resource and lists its key contents. No filler or repeated schema information. Every word adds value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with only 1 parameter and no output schema, the description adequately enumerates the expected response contents (E/S/G scores, classifications, sector, activity, verification date). It does not specify formatting or pagination, but none is needed for a single-profile get. Minor gap: no mention of error conditions, but acceptable.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% (companyId is fully described with type, description, and constraint). The description does not add extra parameter meaning, but the schema already provides sufficient semantics, including the clue that the ID comes from search or listing. This meets the baseline of 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description states a specific verb ('Get') and resource ('company's ESG profile'), and enumerates the contained data (E/S/G scores, classifications, sector, activity, verification date). This clearly distinguishes it from siblings like get_company_criteria or compare_companies, which target other aspects.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage (when you have a company ID and need its ESG profile) but does not explicitly state when to use it versus alternatives like search_company or get_company_criteria. The parameter description adds context ('from search or listing') but the tool description itself offers no direct comparison or exclusion.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_activitiesA
List activities (sub-categories) within a given sector. Requires a sector slug from list_sectors.
| Name | Required | Description | Default |
|---|---|---|---|
| sectorSlug | Yes | Slug of the sector (from list_sectors) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the required input (sector slug) but does not mention any behavioral traits such as pagination, filtering, error handling, or what is returned (e.g., IDs vs. names). This is minimal disclosure for a tool without annotation support.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the core action and immediately followed by the prerequisite. There is no wasted wording or irrelevant detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Considering the tool's simplicity (one parameter, no output schema, no annotations), the description adequately covers purpose and prerequisite. However, it leaves the return format unspecified, which could be a minor gap for a list-returning tool. Still, the context is complete enough for the low complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter sectorSlug is fully described in the schema with 'Slug of the sector (from list_sectors)', and the description repeats this dependency. Since schema coverage is 100%, the description adds no major new meaning, just reinforces the source of the slug.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: listing activities (sub-categories) within a given sector. It distinguishes itself from sibling tools like list_sectors (which lists sectors) and list_companies_by_activity (which lists companies by activity).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly mentions the prerequisite of needing a sector slug from list_sectors, providing clear context on when this tool should be used (i.e., after obtaining a sector slug). It does not explicitly exclude alternatives, but the dependency is clearly stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_companies_by_activityA
List companies ranked within a specific activity. Supports pagination. Returns company names and IDs. Also includes unscored companies (listed on the site but without an ESG profile yet).
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default: 1) | |
| activitySlug | Yes | Slug of the activity (from list_activities) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses pagination support, return fields, and the noteworthy behavior of including unscored companies. This goes beyond the schema but does not specify the exact ranking order or pagination response structure, which would be further valuable.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the primary action and followed by relevant details (pagination, return fields, unscored companies). Every sentence contributes meaning, with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple list tool with 2 parameters and no output schema, the description covers key aspects: the scope (specific activity), pagination, and what is returned, including unscored companies. It is sufficiently complete but omits details like resulting order or response format, which are not captured elsewhere.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema already provides descriptions for both parameters (activitySlug and page) with a cross-reference to list_activities. The tool description adds little beyond the schema, only restating the activity slug source, so the baseline of 3 applies.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists companies ranked within a specific activity, includes pagination, and specifies return fields (names and IDs). It distinguishes from siblings like list_activities and get_activity_ranking by emphasizing activity-specific scoping and inclusion of unscored companies.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool (to list companies by activity) and references list_activities for obtaining the slug. However, it does not explicitly contrast with similar siblings like get_activity_ranking, which might offer a ranked view, so lacks explicit exclusions or alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_sectorsA
List all ESG/CSR sectors available on Zei World. Returns sector names and slugs.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden but only discloses that it returns sector names and slugs. This is useful but does not cover potential pagination, ordering, or any read-only guarantee. For a simple list operation, the disclosure is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two short sentences, front-loaded with the action and resource. Every word adds value, with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool (no parameters, no output schema), the description is nearly complete. It states the output format (names and slugs), which is the main contextual need. A minor addition could be explicit mention of use cases, but it is not essential.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description correctly implies no parameters are needed, and the schema is trivially complete. No additional parameter semantics are required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('List') and the resource ('all ESG/CSR sectors available on Zei World'), and specifies the return value ('sector names and slugs'). This distinguishes it from sibling tools like list_activities, which targets a different entity type.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
No guidance is provided on when to use this tool versus alternatives. It does not mention that list_activities should be used for activities or that list_companies_by_activity is for companies. The description only states what it does, leaving the selection entirely to the agent's inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_companyA
Search for a company by name across all brands on Zei World. Returns matching companies with their IDs.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query (company name) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries full burden. It transparently states the behavior ('Returns matching companies with their IDs') and the scope ('across all brands'), but does not disclose potential partial matching, sorting, or error behavior. This is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, clearly worded sentence with no wasted words. It efficiently states the action, scope, and return value.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple search tool with one parameter and no output schema, the description is sufficiently complete. It covers the search target, scope, and output format. It could mention that it returns a list, but 'matching companies' implies this. No significant gaps given the tool's simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The only parameter (query) is fully described in the schema ('Search query (company name)') and matches the description's 'by name'. With 100% schema coverage, the description adds little beyond the schema, only clarifying the cross-brand scope, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Search') and resource ('company by name across all brands'), and clearly states the return value (matching companies with IDs). It distinguishes itself from sibling tools like list_sectors or get_company_profile by focusing on name-based search.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when you need to find a company by name and retrieve its ID, but it does not explicitly contrast with alternatives or state when not to use it. The context of sibling tools makes the purpose clear, but there is no direct comparison.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
8 tool updates
v1.0.0- First observed
compare_companies - First observed
get_activity_ranking - First observed
get_company_criteria - First observed
get_company_profile - First observed
list_activities - First observed
list_companies_by_activity - First observed
list_sectors - First observed
search_company
TDQS
Scored across 8 tools
Most tools are clearly distinct: sectors, activities, companies, profiles, criteria, and comparisons. The only minor overlap is between list_companies_by_activity and get_activity_ranking, which both involve companies within an activity but differ in input (activity slug vs company ID) and purpose (browsing vs ranking context).
All tool names follow a consistent verb_noun pattern in snake_case (e.g., list_sectors, get_company_profile, compare_companies). There are no mixed naming conventions or vague, generic verbs.
With 8 tools, the server is well-scoped for its purpose. Each tool covers a distinct aspect of ESG data exploration without unnecessary redundancy or bloat.
The set covers the full read-only workflow: browsing the sector-activity-company hierarchy, searching by name, retrieving detailed profiles and criteria, comparing companies, and viewing activity rankings. No obvious missing operations for a public ESG data platform.
Maintenance
Related MCP Connectors
Interact with climate metrics via Riskthinking.AI's CDT Express API in supported AI chat experiences
Agent-native SEC filing data: statements assembled, filings read and synthesized. No API key.
Global B2B intelligence for AI agents: 35M+ companies, 1.6M sanctions, KYB pack. 78 tools.
Gateway between LLM agents and world data through eight tools and a bundled endpoint catalog.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceProvides AI agents with access to CO2 emissions data, climate projections, and risk assessments for heat, flooding, and drought, supporting ESG analysis and CSRD compliance.MIT
- AlicenseNot gradedqualityDmaintenanceEnables LLMs to access SEC EDGAR data: search filings, extract sections, pull structured financials, and track insider transactions.24 npmMIT
- FlicenseNot gradedqualityCmaintenanceEnables interaction with GRESB's Real Estate ESG Benchmarking API, allowing users to query entity data, scores, benchmarks, indicators, and submit survey responses via natural language.1-
- FlicenseNot gradedqualityCmaintenanceProvides AI assistants direct access to SEC EDGAR filing data — financials, filings, and filing text — with no API key required.-