
ZK Proof
STDIOZero-knowledge proof MCP server using circom for building, verifying, and managing ZK circuits.
Zero-knowledge proof MCP server using circom for building, verifying, and managing ZK circuits.
A Model Context Protocol (MCP) server for zero-knowledge proofs using circom. This repository provides tools for building circuits, performing trusted setup, generating proofs, and verifying proofs.
server/
: The MCP server implementationexamples/
: Example use cases for zero-knowledge proofs
age-verification/
: An example that demonstrates how to verify a person's age without revealing their birth dateClone this repository:
git clone https://github.com/yourusername/zkMCP.git cd zkMCP/server
Install dependencies:
npm install
Build the server:
npm run build
Add the server to your MCP settings configuration file:
{ "mcpServers": { "zkproof": { "command": "node", "args": ["/path/to/zkMCP/server/build/index.js"], "env": { "ZKINTRO_DIR": "/path/to/circom/projects" }, "disabled": false, "autoApprove": [] } } }
Once the server is installed and configured, you can use it to:
See the server README for detailed usage instructions.
The age verification example demonstrates how to use zero-knowledge proofs to verify that a person is above a certain age without revealing their actual birth date.
See the age verification README for more details.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.