Search live credit card merchant offers across Amex, Chase, Citi, PayPal, Rakuten, Capital One.
{
"mcpServers": {
"com-getcurrentoffer-mcp": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Search live credit card merchant offers across Amex, Chase, Citi, PayPal, Rakuten, Capital One.
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
License not specified.
Is it maintained?
Commit history unknown.
Will it work with my client?
Transport: . Compatibility not confirmed.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
An MCP server for Massive.com Financial Market Data
MCP server for Financial Modeling Prep API with 250+ financial data tools
Non-custodial x402 payments for AI agents. Sign locally, spend limits, Base network.
MCP Security Weekly
Get CVE alerts and security updates for com.getcurrentoffer/mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Search live credit card merchant offers (cash back, points, statement credits) across Amex, Chase, Citi, PayPal, Rakuten, and Capital One — from any AI agent that speaks the Model Context Protocol.
GetCurrentOffer is a remote MCP server. There is nothing to install. Point your client at the endpoint, authenticate, and four tools are immediately available.
| Endpoint | https://getcurrentoffer.com/api/mcp |
| Transport | Streamable HTTP (JSON-RPC 2.0) |
| Protocol version | 2024-11-05 |
| Auth | OAuth 2.1 + Dynamic Client Registration, or API key |
| Health | https://getcurrentoffer.com/api/mcp/health |
| Manifest | https://getcurrentoffer.com/.well-known/mcp.json |
| Docs | https://getcurrentoffer.com/docs/mcp |
| API key signup | https://getcurrentoffer.com/api-keys |
| Homepage | https://getcurrentoffer.com |
| Tool | Purpose |
|---|---|
search_offers | Fuzzy search across all offers by merchant, description, or keyword. Optional issuer filter. |
get_offer_details | Look up the full record for one offer by ID. |
list_merchants | Browse every merchant with active offers, optionally filtered by issuer. |
compare_offers | Compare offers for one merchant across all six issuers and find the best deal. |
Full input schemas live in mcp.json.
Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS)
or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"getcurrentoffer": {
"url": "https://getcurrentoffer.com/api/mcp"
}
}
}
Restart Claude Desktop. The first call triggers an OAuth consent flow in your browser via Dynamic Client Registration — no API key needed.
{
"mcp": {
"servers": {
"getcurrentoffer": {
"url": "https://getcurrentoffer.com/api/mcp",
"headers": { "X-API-Key": "gco_your_api_key_here" }
}
}
}
}
Get a free API key at https://getcurrentoffer.com/api-keys.
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "http",
"url": "https://getcurrentoffer.com/api/mcp",
"headers": { "X-API-Key": "gco_your_api_key_here" }
}
}
]
}
}
More client snippets in examples/.
# Health check (no auth)
curl https://getcurrentoffer.com/api/mcp/health
# List tools (with API key)
curl -X POST https://getcurrentoffer.com/api/mcp \
-H "Content-Type: application/json" \
-H "X-API-Key: gco_your_api_key_here" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
# Search for Starbucks offers
curl -X POST https://getcurrentoffer.com/api/mcp \
-H "Content-Type: application/json" \
-H "X-API-Key: gco_your_api_key_here" \
-d '{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "search_offers",
"arguments": { "query": "Starbucks", "limit": 5 }
}
}'
Two paths, both fully supported:
OAuth 2.1 with Dynamic Client Registration (RFC 7591) — recommended for
hosted clients like Claude Desktop, ChatGPT connectors, and Claude.ai. The
client discovers the auth server via the
Protected Resource Metadata endpoint
advertised in WWW-Authenticate per RFC 9728, registers itself, then walks
the user through a consent screen. No manual key copying.
API key — recommended for CLI tools, server-side agents, and dev/test.
Generate one at https://getcurrentoffer.com/api-keys and pass it via either
X-API-Key: gco_… or Authorization: Bearer gco_…. Free tier available.
The [Authorization Server Metadata](./oauth-authorization-