Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Not financial advice.
| **Discovery** | [llms.txt](https://mcp.alloc-context.com/llms.txt), [x402 manifest](https://mcp.alloc-context.com/.well-known/x402.json) |
| **Pricing** | **$0.02** cached context/math · **$0.05** live ingest or portfolio |
| **Payment** | x402 on Base — USDC or EURC |
| **Market scope** | Holdings-scoped (BTC/ETH OHLC; alt quote snapshots); bridge auto-scopes from portfolio |

Agents and wallets connect directly to the hosted endpoint — see
[agent-integration.md](docs/agent-integration.md). The Cursor bridge above
Expand Down
44 changes: 34 additions & 10 deletions alloccontext/mcp/bazaar.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,28 +43,49 @@
# CDP Bazaar indexes service_name (≤32 chars) and up to five tags from payments.
BAZAAR_SERVICE_NAME = "AllocContext portfolio MCP"
SERVICE_TAGS = (
"crypto",
"cryptocurrency",
"bitcoin",
"btc",
"ethereum",
"eth",
"holdings",
"portfolio",
"crypto",
"bitcoin",
"agent-tools",
"mcp",
"allocation",
"rebalance",
"sentiment",
"macro",
"rebalance",
"allocation",
"coinbase",
"kraken",
"agent-tools",
"mcp",
"x402",
)
BAZAAR_INDEX_TAGS = (
"crypto",
"cryptocurrency",
"portfolio",
"holdings",
"btc",
)
BAZAAR_INDEX_TAGS = ("btc", "eth", "portfolio", "holdings", "mcp")

DISCOVERY_KEYWORD_MARKERS = (
"crypto",
"cryptocurrency",
"digital assets",
"crypto portfolio",
"portfolio allocation",
"portfolio context",
"allocation drift",
"rebalance plan",
"fear and greed",
"etf flows",
"holdings",
"holdings-scoped",
"coinbase",
"kraken",
"market context",
"sentiment",
)

LISTING_DESCRIPTION = (
Expand Down Expand Up @@ -616,9 +637,12 @@ def build_llms_txt(

## Search keywords

bitcoin, ethereum, btc, eth, portfolio allocation, portfolio context, holdings,
market context, sentiment, macro calendar, etf flows, allocation drift,
rebalance plan, fear and greed, agent tools, mcp, x402
bitcoin, ethereum, btc, eth, crypto, cryptocurrency, digital assets, altcoin,
stablecoin, crypto portfolio, portfolio allocation, portfolio context, holdings,
holdings-scoped, coinbase, kraken, market context, market data, sentiment,
macro calendar, etf flows, allocation drift, allocation bands, rebalance plan,
fear and greed, fear greed index, nav, agent tools, ai agents, mcp, x402,
model context protocol, context bundle

## Examples

Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,15 @@ keywords = [
"x402",
"bitcoin",
"ethereum",
"crypto",
"cryptocurrency",
"portfolio",
"allocation",
"agents",
"crypto",
"holdings",
"rebalance",
"coinbase",
"kraken",
"agents",
]
classifiers = [
"Development Status :: 4 - Beta",
Expand Down
2 changes: 1 addition & 1 deletion server.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.negillett/alloc-context",
"title": "AllocContext",
"description": "Portfolio crypto context MCP: holdings, market, optional drift. x402 hosted. ELv2.",
"description": "Holdings-scoped MCP: Coinbase/Kraken portfolio, alt quotes, drift. x402 hosted. ELv2.",
"websiteUrl": "https://mcp.alloc-context.com/llms.txt",
"repository": {
"url": "https://github.com/negillett/alloc-context",
Expand Down
Loading