Server data from the Official MCP Registry
Multi-year equity-comp optimizer: ISO/NSO/RSU/QSBS/hedging. Federal + 50 states + DC tax code.
Multi-year equity-comp optimizer: ISO/NSO/RSU/QSBS/hedging. Federal + 50 states + DC tax code.
Remote endpoints: streamable-http: https://optionsahoy.com/mcp
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry.
6 tools verified · Open access · No issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Unverified package source
We couldn't verify that the installable package matches the reviewed source code. Proceed with caution.
Remote Plugin
No local installation needed. Your AI client connects to the remote endpoint directly.
Add this to your MCP configuration to connect:
{
"mcpServers": {
"io-github-alvisooculus-optionsahoy-mcp": {
"url": "https://optionsahoy.com/mcp"
}
}
}From the project's GitHub README.
Multi-year equity-compensation optimizer. Six tools that return the globally-optimal schedule across the candidate space. Full federal + 50-state + DC tax code.
Live MCP endpoint: https://optionsahoy.com/mcp (no auth, no install)
Live REST API: https://optionsahoy.com/api/v1
OpenAPI 3.1 spec: /openapi.json
Discovery manifests: /.well-known/mcp.json · /.well-known/openapi.json
Agent integration docs: optionsahoy.com/for-agents
Built by AlphaLatitude Inc. — a pre-revenue beta-stage equity-compensation optimization product.
An optimization engine for equity-compensation tax planning, exposed as both a Model Context Protocol (MCP) server and a plain REST API. Six tools:
| Tool name | What it computes |
|---|---|
amt_iso_optimize | Multi-year Incentive Stock Option (ISO) exercise schedule that minimizes federal and state Alternative Minimum Tax (AMT), with credit recovery across years |
nso_calculate | Non-qualified Stock Option (NSO) exercise tax + sell-vs-hold-for-LTCG comparison |
rsu_sell_vs_hold | RSU sell-at-vest vs hold-for-long-term-capital-gains decision |
concentration_analyze | Single-stock concentration risk + sell-down vs hold vs hedge optimization |
protective_put_price | Protective put / zero-cost collar pricing via Black-Scholes against implied volatility from a daily-refreshed option-chain snapshot |
qsbs_check | Section 1202 Qualified Small Business Stock (QSBS) qualification (eight statutory tests, OBBBA 2026 tiered exclusion) |
Each tool returns the globally-optimal schedule across the candidate space — not heuristics, not samples. Coverage spans the full federal tax code (ordinary brackets, long-term capital gains, AMT with credit recovery, FICA, NIIT) plus all 50 states and DC (state ordinary brackets, LTCG treatment, state AMT for CA, NY, MN). Same engine as the in-browser calculators at optionsahoy.com/tools; the API response is byte-identical to clicking through the tool.
A benchmark of five frontier large language models on the same multi-year ISO exercise problem found that every one of 15 trials overshot the achievable after-tax outcome by 2x to 20x. Multi-year scheduling has a search space larger than an LLM can reason through in-context. Full write-up: HackerNoon — But can it do taxes though?
Add the server as a remote HTTP MCP connection:
https://optionsahoy.com/mcp
Or via the add-mcp CLI:
npx add-mcp https://optionsahoy.com/mcp
# List endpoints
curl https://optionsahoy.com/api/v1
# Run an optimization
curl -X POST https://optionsahoy.com/api/v1/amt-iso \
-H "content-type: application/json" \
-d @input.json
Request body shapes are documented in public/openapi.json.
functions/ Cloudflare Pages Functions (MCP server + REST API endpoints)
mcp.ts HTTP MCP server
api/v1/*.ts Six REST endpoints + GET /api/v1 discovery
_lib/*.ts Shared helpers, calc-input parsers, MCP tool descriptors
lib/ Optimizer + tax-code logic
calc/ Per-tool optimizer functions (computeAmtIso, etc.)
tax/ Federal + 50-state + DC bracket data, AMT, FICA, NIIT
markets/ Sector statistics
options/ Black-Scholes, risk-free rates
data/ Type definitions for option-chain data
public/ Static assets: OpenAPI spec, llms.txt, discovery manifests
tests/ Vitest suites (873+ tests including byte-identity assertions)
npm install
npm test # 870+ tests, ~3s on a laptop
npm run typecheck
io.github.AlvisoOculus/optionsahoy-mcp v1.0.0, status activeGoogle Cloud Agent Registry lets each GCP project register external MCP servers for use by Gemini agents. Registration is per-project (no central submission). Two paths:
# Path A: let the Agent Registry introspect our MCP endpoint
gcloud alpha agent-registry mcp-servers register \
--uri=https://optionsahoy.com/mcp \
--display-name="OptionsAhoy" \
--location=us-central1 \
--import-tools
# Path B: pass our published toolspec.json directly (faster, no introspection)
gcloud alpha agent-registry mcp-servers register \
--uri=https://optionsahoy.com/mcp \
--display-name="OptionsAhoy" \
--location=us-central1 \
--tool-spec=<(curl -sSL https://optionsahoy.com/toolspec.json)
The toolspec.json mirrors the MCP tools/list response with readOnlyHint and idempotentHint annotations on all six tools (all are pure deterministic calculators with no side effects). To regenerate after a tool-shape change:
curl -sS -X POST https://optionsahoy.com/mcp \
-H 'content-type: application/json' \
-d '{"jsonrpc":"2.0","method":"tools/list","id":1}' \
| jq -c '{tools: [.result.tools[] | . + {annotations: {readOnlyHint:true, idempotentHint:true, destructiveHint:false, openWorldHint:false}}]}' \
> public/toolspec.json
See LICENSE. All rights reserved during beta; the deployed service at optionsahoy.com is free under terms.
For partnerships, early API access, MCP integration support: andrew@alphalatitude.com
Two pieces serve the live endpoint:
functions/ + public/ on every push to main → optionsahoy-mcp.pages.dev.worker-proxy/ forwards
optionsahoy.com/mcp* + /api/v1/* to that Pages deployment, so the
public URL stays stable. One-time wrangler deploy — see
worker-proxy/README.md.Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.