From 0336154776661015a53467cb0ca79bd44df8043d Mon Sep 17 00:00:00 2001 From: Xharles Date: Wed, 22 Apr 2026 09:00:45 +0100 Subject: [PATCH 1/2] feat(api): add get_market_coin tool to api tools list --- src/pages/api.jsx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/pages/api.jsx b/src/pages/api.jsx index 00bdb50..b4a949b 100644 --- a/src/pages/api.jsx +++ b/src/pages/api.jsx @@ -86,6 +86,7 @@ const tools = [ desc: "What crypto is talking about, right now", }, { name: "search_projects", desc: "Discover tags for any project" }, + { name: "get_market_coin", desc: "Prices and metadata for the top 100 coins" }, ]; const ApiPage = () => { @@ -379,7 +380,7 @@ const ApiPage = () => {

- 11 tools. Zero setup. + 12 tools. Zero setup.

Every endpoint is also a pre-described MCP tool. Your agent @@ -392,7 +393,7 @@ const ApiPage = () => {

@@ -431,7 +432,7 @@ const ApiPage = () => {
- 11 + 12 Tools at Launch @@ -525,7 +526,7 @@ const ApiPage = () => { sources
  • - All 11 tools + All 12 tools
  • MCP and REST access From 08602f0242ed80a5af923b484421c909f7aaaa08 Mon Sep 17 00:00:00 2001 From: Xharles Date: Wed, 22 Apr 2026 10:22:22 +0100 Subject: [PATCH 2/2] make mcp importer first --- src/pages/api.jsx | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/src/pages/api.jsx b/src/pages/api.jsx index b4a949b..e82f448 100644 --- a/src/pages/api.jsx +++ b/src/pages/api.jsx @@ -45,18 +45,19 @@ const mcpConfig = `{ }`; const mcpClients = [ { - name: "Claude Code", - command: "claude mcp add --transport http alphaday https://api.alphaday.com/mcp", + name: "MCP Importer", + command: "mcporter config add alphaday --url https://api.alphaday.com/mcp", label: "Terminal", }, { - name: "Codex", - command: "codex mcp add alphaday --url https://api.alphaday.com/mcp", + name: "Claude Code", + command: + "claude mcp add --transport http alphaday https://api.alphaday.com/mcp", label: "Terminal", }, { - name: "MCP Importer", - command: "mcporter config add alphaday --url https://api.alphaday.com/mcp", + name: "Codex", + command: "codex mcp add alphaday --url https://api.alphaday.com/mcp", label: "Terminal", }, {