Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-srotzin-hive-mcp-credit-broker": {
"args": [
"-y",
"HIVEMORPH_UPSTREAM"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Broker-only credit/lending discovery shim for AI agents. Surfaces real lending markets from licensed/established third-party protocols and
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'HIVEMORPH_UPSTREAM' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked HIVEMORPH_UPSTREAM against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in ai-ml
Dynamic problem-solving through sequential thought chains
Persistent memory using a knowledge graph
An autonomous agent that conducts deep research on any data using any LLM providers
🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, distributed swarm intelligence, RAG integration, and native Claude Code / Codex Integration
MCP Security Weekly
Get CVE alerts and security updates for io.github.srotzin/hive-mcp-credit-broker and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Broker-only credit/lending discovery shim for AI agents. Surfaces real lending markets from licensed/established third-party protocols and routes applications.
Hive is a broker-only directory. Hive does not lend, originate, hold collateral, or service debt. All credit products are provided by third-party protocols. Verify protocol terms, audit status, and licensing before borrowing.
#C08D23Read-only, real data, refreshed continuously:
| Provider | Type |
|---|---|
aave-v3 | Permissionless overcollateralized lending |
compound-v3 | Permissionless overcollateralized lending |
morpho-blue | Isolated permissionless lending markets |
spark | MakerDAO-aligned overcollateralized lending |
maple | Permissioned institutional lending (KYC required) |
goldfinch | Real-world-asset (RWA) senior pool |
| Name | Description |
|---|---|
credit.markets | Full catalog of lending markets across protocols. |
credit.quote | Best-APY-first offers for a borrow request, with LTV check. |
credit.today | 24h market count + top providers by total supplied liquidity (USD). |
| Method | Path | Purpose |
|---|---|---|
| GET | /v1/credit/markets[?asset=USDC&provider=aave-v3] | List markets |
| POST | /v1/credit/quote | Best-APY-first borrow offers |
| GET | /v1/credit/today | 24h rollup |
| GET | /health | Health + disclaimer + brand_color |
| GET | /.well-known/mcp.json | MCP discovery document |
| POST | /mcp | MCP JSON-RPC endpoint |
# Markets for USDC
curl https://hive-mcp-credit-broker.onrender.com/v1/credit/markets?asset=USDC
# Best borrow offers for $50k USDC against $75k WETH collateral
curl -X POST https://hive-mcp-credit-broker.onrender.com/v1/credit/quote \
-H 'content-type: application/json' \
-d '{"asset":"USDC","amount":50000,"collateral_asset":"WETH","collateral_value_usd":75000}'
# 24h top providers by TVL
curl https://hive-mcp-credit-broker.onrender.com/v1/credit/today
npm install
HIVEMORPH_UPSTREAM=https://hivemorph.onrender.com npm start
| Variable | Default | Notes |
|---|---|---|
PORT | 3000 | Listen port |
ENABLED | true |