https://github.com/deeptanshu-sankhwar/mcpchain
MCPChain brings the Model Context Protocol to Web3 by anchoring agent tools, trust registries, and attestable executions on-chain.
https://github.com/deeptanshu-sankhwar/mcpchain
aiagents blockchain cometbft cosmos-sdk ignite layer1 layer2 mcp mcp-server proof-of-stake
Last synced: 4 months ago
JSON representation
MCPChain brings the Model Context Protocol to Web3 by anchoring agent tools, trust registries, and attestable executions on-chain.
- Host: GitHub
- URL: https://github.com/deeptanshu-sankhwar/mcpchain
- Owner: Deeptanshu-sankhwar
- License: mit
- Created: 2025-05-06T10:48:36.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-05-25T06:25:11.000Z (5 months ago)
- Last Synced: 2025-05-25T07:29:37.331Z (5 months ago)
- Topics: aiagents, blockchain, cometbft, cosmos-sdk, ignite, layer1, layer2, mcp, mcp-server, proof-of-stake
- Language: Go
- Homepage:
- Size: 1.7 MB
- Stars: 13
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MCPChain
MCPChain brings the Model Context Protocol to Web3 by anchoring agent tools, trust registries, and attestable executions on-chain.## Start the chain
```bash
cd mcpchain
ignite chain build
```### [Optional] Delete Previous Chain State (Safe Dev Reset)
```bash
rm -rf ~/.mcpchain
```### Init Chain
```bash
mcpchaind init validator --chain-id mcpchain
```### Create Key
```bash
mcpchaind keys add validator
```### Replace `"stake"` with `"umcp"` in `genesis.json`
```bash
sed -i '' 's/"stake"/"umcp"/g' ~/.mcpchain/config/genesis.json
```### Add Funds
```bash
mcpchaind genesis add-genesis-account $(mcpchaind keys show validator -a) 1000000000umcp
```### Generate gentx using updated denom
```bash
mcpchaind genesis gentx validator 500000000umcp --chain-id mcpchain
```### Collect and validate
```bash
mcpchaind genesis collect-gentxs
mcpchaind genesis validate
```### Start the chain with a minimum gas price
```bash
mcpchaind start --minimum-gas-prices=0.001umcp
```