zei-world-mcp
Exposes ESG/CSR data from Zei World to LLMs, enabling sector browsing, company search, ESG score comparison, and detailed evaluation criteria exploration through natural language.
README
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_sectors |
List all ESG/CSR sectors |
list_activities |
List activities (sub-categories) within a sector |
list_companies_by_activity |
List ranked companies in an activity (paginated) |
search_company |
Search for a company by name |
get_company_profile |
Get a company's ESG profile (E/S/G scores, classifications) |
get_company_criteria |
Get detailed evaluation criteria for a company in a category |
compare_companies |
Compare 2–5 companies side by side |
get_activity_ranking |
Get the full ranking within an activity, optionally by category |
Quick start
npm install
npm run build
Stdio (local MCP client)
npm start
Use 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:http
Server 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-mcp
Vercel
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 handler
Disclaimer
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.