GitEquity MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@GitEquity MCP ServerWhat stocks do I currently hold?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
GitEquity
Own real stocks from a GitHub comment.
No brokerage account. No wallet app. No gas.
Website · Docs · Dashboard · X
The one-line version
You type this in a GitHub issue:
@gitequitybot buy $NVDA 100A vault gets deployed on-chain under your GitHub ID, 100 USDG gets swapped for gitNVDA through Uniswap V3, and the position sits in your vault until you sell or withdraw. You never opened a wallet. You never paid gas.
Related MCP server: mt5-mcp
Contents
Why this exists
Every developer already has an identity that is stable, public, and hard to fake casually: their GitHub account. GitEquity treats that account as the primary key for a brokerage.
The consequences are practical rather than philosophical:
Onboarding is zero steps. If you can comment on an issue, you have an account.
Identity is permanent. Vaults bind to the numeric GitHub user ID, which GitHub never reuses and never changes. Rename your handle, keep your money.
The interface is the workflow. Bounties, payouts, and treasury moves happen where the work already happens.
How a command becomes a trade
GitHub comment
|
v
Webhook ──► Intent parser ──► Relayer ──► GitEquityVault
│
Uniswap V3
│
gitNVDA, gitTSLA, ...issue_commentwebhook fires, signature verified againstGITHUB_WEBHOOK_SECRETCommand text is parsed into a structured intent: ticker, side, size
Vault is looked up by GitHub user ID, or deployed on first use
Relayer signs a short-lived authorization and submits the transaction, paying gas
Vault routes USDG through Uniswap V3 and holds the resulting stock token
Bot edits its own comment in place with the transaction hash and new balance
Security model
The vault requires two independent signatures for every state-changing call:
Signature | Held by | Covers |
| Per-user keypair, AES-256-GCM encrypted at rest | Vault address, GitHub user ID, nonce, deadline |
| Relayer signing key, hot | Issued only after a GitHub command is verified |
Neither key alone moves funds. The owner key never pays gas and never appears as msg.sender. Replay is blocked by a monotonic nonce plus a five-minute deadline carried inside every signature.
Swap outputs are constrained to an on-chain whitelist, so a compromised relayer cannot route a swap into an attacker-controlled token.
Contracts
Contract | Role |
| Deploys exactly one soul-bound vault per GitHub user ID |
| Custody and swap execution, dual-signature gated |
| Deploys the ERC-20 receipt token for each ticker |
| Soul-bound receipt: gitNVDA, gitTSLA, gitAAPL, ... |
| Native EQUITY token |
| Merkle distributor for EQUITY |
Sources and deploy scripts live in gitequity-contracts. Addresses are published to deployments.json after each deploy.
Assets
62 tokenized equities on Robinhood Chain, each verified on-chain through symbol() and decimals(). The registry lives in packages/rwa/src/registry.ts.
A sample of what is tradeable:
Ticker | Receipt | Ticker | Receipt |
NVDA | gitNVDA | TSLA | gitTSLA |
AAPL | gitAAPL | MSFT | gitMSFT |
AMZN | gitAMZN | GOOGL | gitGOOGL |
META | gitMETA | COIN | gitCOIN |
AMD | gitAMD | AVGO | gitAVGO |
Settlement is USDG. Pools are the 1% fee tier for single names, 0.3% for index products.
Bot commands
Tag @gitequitybot in any issue, pull request, or discussion comment.
Command | Example | Effect |
|
| Buy $100 of NVDA |
|
| Sell $50 of TSLA |
|
| Close the whole position |
|
| Rotate one position into another |
|
| Holdings, cost basis, current value |
|
| USDG balance |
|
| Your deposit address and instructions |
|
| Send tokens to a linked wallet |
|
| Approve a write initiated from an AI client |
Try them without spending anything in the playground.
MCP: trade from your AI client
GitEquity ships an MCP server, so Claude, Cursor, ChatGPT and others can read your portfolio directly.
Reads are direct. Writes always require a confirmation code posted from your GitHub account - the assistant proposes, you approve. An AI client cannot move your money on its own.
{
"mcpServers": {
"gitequity": {
"url": "https://gitequity.xyz/api/mcp",
"transport": "streamable-http"
}
}
}Per-client setup guides: gitequity.xyz/mcp.
Repository layout
gitequity/
├── apps/
│ ├── api/ Express server, webhook handler, relayer, MCP endpoint
│ ├── web/ React + Vite frontend: landing, docs, dashboard
│ └── social-cards/ OG image generator
├── packages/
│ ├── db/ Drizzle schema and migrations
│ ├── rwa/ Asset registry and price feeds
│ ├── rh-swap/ Uniswap V3 quote and calldata helpers
│ ├── mcp/ MCP tool definitions and handlers
│ ├── x402/ x402 payment protocol
│ ├── api-spec/ OpenAPI spec, single source of truth
│ ├── api-zod/ Zod validators generated from the spec
│ └── api-client-react/ React Query hooks generated from the spec
├── scripts/ Dev and deploy tooling
└── tests/The API contract flows one way: edit packages/api-spec, regenerate api-zod and api-client-react. Server and client cannot drift.
Running locally
Requirements: Node 20+, pnpm 9+, PostgreSQL 15+
git clone https://github.com/gitequityorg/gitequity.git
cd gitequity
pnpm install
cp .env.example .env # fill in the values below
pnpm --filter @workspace/db run migrate
pnpm devAPI comes up on :3000, web on :5173.
To exercise the bot locally, point your GitHub App webhook at a tunnel such as ngrok http 3000, then comment in a repository where the App is installed.
Environment
Variable | What it is |
| Numeric ID of your GitHub App |
| App private key, newlines escaped as |
| OAuth client ID |
| OAuth client secret |
| Shared secret for webhook signature checks |
| Session signing key, 32+ characters |
| 32-byte hex, wraps every stored user private key |
| Deploys vaults and receipt tokens, pays gas |
| Signs execution authorizations |
| PostgreSQL connection string |
ENCRYPTION_MASTER_KEY cannot be rotated without re-encrypting every stored key. Back it up before going anywhere near production.
Related repositories
Repository | Contents |
Solidity sources, Hardhat config, deploy scripts | |
Standalone MCP server | |
Expo app | |
AI-assisted GitHub App builder | |
Safe repository for trying bot commands |
License
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityAmaintenanceThis MCP server connects AI assistants to a Public.com brokerage account, enabling natural language trading of stocks, options, and crypto, along with portfolio management, quotes, and orders.3566Apache 2.0
- AlicenseAqualityAmaintenanceAn MCP server that lets an AI agent read your MetaTrader 5 account and place trades over the Model Context Protocol, with a configurable human approval gate.154MIT
- AlicenseAqualityBmaintenanceAn MCP server that lets an AI agent read your portfolio, place paper trades, and check the leaderboard on your ChartObserver account.1313MIT
- Alicense-qualityBmaintenanceAn MCP server that lets you talk to your AI trading assistant in plain English to research stocks, generate trade recommendations, manage a portfolio, and execute trades through natural language.MIT
Related MCP Connectors
MCP server for Gainium — manage trading bots, deals, and balances via AI assistants
An MCP server that gives your AI access to the source code and docs of all public github repos
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gitequityorg/GitEquity'
If you have feedback or need assistance with the MCP directory API, please join our Discord server