northwood-carbon MCP server
An MCP server that provides access to Northwood Capital Partners' portfolio carbon data, enabling MCP-compatible agents to query emissions, analyze decarbonization gaps, and simulate reduction initiatives through natural language.
README
northwood-carbon MCP server
An MCP (Model Context Protocol) server that exposes Northwood Capital Partners' portfolio carbon data as tools any MCP-compatible agent (Claude Desktop, Claude Code, etc.) can call.
Turns carbon questions like "Which three portcos are furthest behind their 2030 targets, and what's the cheapest initiative for each?" into tool calls, not data wrangling.
Tools
| Tool | Purpose |
|---|---|
list_portcos |
All 10 portcos with sector, status, revenue, facilities, data grade |
get_portco_emissions |
Scope 1 / Scope 2 emissions for a portco, filterable by year + scope |
gap_to_target |
Gap analysis vs SBTi-aligned 42% by 2030 pathway |
list_initiatives |
Decarbonization levers with reduction, capex, status |
simulate_reduction |
What-if: apply initiatives, return projected emissions + capex |
Install
# Clone
git clone <repo-url> northwood-carbon-mcp
cd northwood-carbon-mcp
# With uv (recommended)
uv sync
# Or with pip
pip install -e .
Run
uv run server.py
# or
python server.py
The server speaks MCP over stdio, so you don't run it directly in most cases — you register it with a client that spawns it.
Connect to Claude Desktop / Claude Code
Add to your MCP config (~/.claude/mcp.json or Claude Desktop settings):
{
"mcpServers": {
"northwood-carbon": {
"command": "uv",
"args": ["--directory", "/path/to/northwood-carbon-mcp", "run", "server.py"]
}
}
}
Restart the client. The five tools appear automatically.
Example session
You: What are Meridian's 2024 Scope 1 emissions?
Claude → get_portco_emissions(portco="meridian", year=2024, scope=1)
← {"emissions": {"2024": {"scope1": 750.0}}, "units": "tCO2e", ...}
Claude: Meridian Business Solutions emitted 750 tCO2e in Scope 1 during 2024,
primarily natural gas for space heating across 16 offices.
You: Which portcos are off-track for 2030 and what's the cheapest initiative for each?
Claude → list_portcos()
→ gap_to_target(portco=<each>) × 10
→ list_initiatives(portco=<off-track one>, status="planned") × 3
← synthesizes ranked answer with capex + reduction per lever
Data
Static snapshot in data.json, sourced from the Northwood engagement's Week 3 carbon
inventory and Week 4 decarbonization work. Drop in a live DB connection by replacing
the DATA = json.loads(...) line with a query layer — the tool surface stays identical.
Structure
.
├── server.py — FastMCP server, 5 tools, ~200 LOC
├── data.json — Static data (PORTCOS, TRAJECTORY, INITIATIVES, RISK_SUMMARY, ESG_SCORES, FACILITIES)
├── pyproject.toml
└── README.md
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.