ESG MCP Servers for VS Code
io.github.freminder/esg-mcp-servers
31 MCP tools for ESG data extraction, PDF processing, vector search, and EU regulation analysis.
client:VS Code
transport:stdio
runtime:pypi
Install ESG MCP Servers in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "anthropic-api-key",
"description": "ANTHROPIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "postgres-dsn",
"description": "POSTGRES_DSN",
"password": true
},
{
"type": "promptString",
"id": "mongodb-uri",
"description": "MONGODB_URI",
"password": true
},
{
"type": "promptString",
"id": "embedding-model",
"description": "EMBEDDING_MODEL",
"password": true
},
{
"type": "promptString",
"id": "embedding-dimensions",
"description": "EMBEDDING_DIMENSIONS",
"password": true
}
],
"servers": {
"esg-mcp-servers": {
"type": "stdio",
"command": "uvx",
"args": [
"esg-mcp-servers"
],
"env": {
"ANTHROPIC_API_KEY": "${input:anthropic-api-key}",
"POSTGRES_DSN": "${input:postgres-dsn}",
"MONGODB_URI": "${input:mongodb-uri}",
"EMBEDDING_MODEL": "${input:embedding-model}",
"EMBEDDING_DIMENSIONS": "${input:embedding-dimensions}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs