gitequity-mcp

gitequity-mcp

MCP server that exposes your GitEquity portfolio to AI clients, enabling balance queries, stock prices, and trade proposals confirmed via GitHub comments.

Category
Visit Server

README

<div align="center">

<img src="./.github/assets/banner.png" alt="GitEquity" width="100%" />

gitequity-mcp

Your GitEquity portfolio, inside your AI client.

MCP Node License

</div>


Ask Claude what your portfolio is worth. Ask Cursor to check whether that NVDA position recovered. The MCP server exposes GitEquity as tools any compatible client can call.

Works with Claude Desktop, Claude Code, Cursor, ChatGPT, VS Code, Gemini, Grok, Copilot, and anything else that speaks MCP.


Install

Hosted (nothing to run)

Point your client at the production endpoint:

{
  "mcpServers": {
    "gitequity": {
      "url": "https://gitequity.xyz/api/mcp",
      "transport": "streamable-http"
    }
  }
}

Local via npx

{
  "mcpServers": {
    "gitequity": {
      "command": "npx",
      "args": ["gitequity-mcp"],
      "env": {
        "GITEQUITY_API_URL": "https://api.gitequity.xyz",
        "GITEQUITY_GITHUB_TOKEN": "ghp_..."
      }
    }
  }
}

Config file locations: claude_desktop_config.json for Claude Desktop, .cursor/mcp.json for Cursor. Per-client walkthroughs with screenshots live at gitequity.xyz/mcp.

Standalone HTTP

npx gitequity-mcp --http --port 3001
# → http://localhost:3001/mcp

Tools

Read - execute immediately

Tool Returns
get_vault_balance Vault address and USDG balance
get_rwa_portfolio Every position with cost basis and current value
get_stock_price Live price for one ticker
list_stocks All 62 tradeable tickers
get_transactions Transaction history
list_repos Repositories with the App installed
get_project_status Project and bounty state

Write - require confirmation

Tool Effect
buy_stock Buy a position with USDG
sell_stock Sell a position back to USDG

Why writes need a confirmation code

An AI client can propose a trade. It cannot execute one.

When buy_stock or sell_stock is called, the server returns a short code instead of moving funds:

Confirm this order by commenting in any GitHub issue:

    @gitequitybot confirm 8F2A

Order: buy $NVDA 100 · expires in 10 minutes

The trade executes only after that comment appears under your GitHub account. A prompt injection in a web page your assistant happens to read cannot spend your money, because the assistant is not the one holding the authority.

Codes expire after 10 minutes and are single-use.


Development

pnpm install
pnpm build
pnpm start
src/
├── index.ts              Server bootstrap, tool registration, transport
├── tools/
│   ├── vault-balance.ts  Balance and vault address
│   ├── rwa-tools.ts      Portfolio, prices, ticker list
│   ├── write-tools.ts    Buy and sell, confirmation flow
│   ├── transactions.ts   History
│   ├── repos.ts          Installed repositories
│   └── project-status.ts Projects and bounties
└── lib/
    ├── github-id.ts      Resolve a token to a numeric GitHub user ID
    ├── vault-reader.ts   On-chain reads
    └── pending.ts        Confirmation code store

Environment

Variable Required Default
GITEQUITY_API_URL yes -
GITEQUITY_GITHUB_TOKEN yes -
GITEQUITY_RPC_URL no Public Robinhood Chain RPC

The GitHub token needs read:user and nothing more. It is used to resolve your numeric user ID, which is what a vault is keyed on.


License

Apache 2.0. See LICENSE and NOTICE.

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

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.

Official
Featured
TypeScript
Kagi MCP Server

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.

Official
Featured
Python
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured