cryptorank-mcp 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,21 @@
1
+ # CryptoRank MCP
2
+
3
+ Crypto rankings from the public CryptoRank API. No key required.
4
+
5
+ This file is self contained. It reads public data only and never writes to the machine. All output is bounded and honest about what could not be fetched.
6
+
7
+ ## Tools
8
+
9
+
10
+ * `coins` List ranked coins.
11
+ * `coin` Get a coin.
12
+
13
+ ## Usage
14
+
15
+ ```bash
16
+ npm install
17
+ npm run build
18
+ node dist/index.js
19
+ ```
20
+
21
+ Data comes from the public CryptoRank API.
package/dist/api.js ADDED
@@ -0,0 +1,45 @@
1
+ const BASE = 'https://api.cryptorank.io/v0';
2
+ const UA = 'mrfentmen-cryptorank-mcp/1.0';
3
+ export async function coins(args) {
4
+ const limit = Math.min(Math.max(Number(args?.limit ?? 20) || 20, 1), 50);
5
+ const res = await fetch(`${BASE}/coins?limit=${limit}`, {
6
+ headers: { 'User-Agent': UA, Accept: 'application/json' },
7
+ signal: AbortSignal.timeout(20000),
8
+ });
9
+ if (!res.ok)
10
+ throw new Error(`CryptoRank returned ${res.status}`);
11
+ const d = (await res.json());
12
+ const list = d.data ?? [];
13
+ if (!list.length)
14
+ return 'No coins returned.';
15
+ return `CryptoRank top coins (${list.length}):\n` +
16
+ list.map((c, i) => {
17
+ const usd = c.values?.USD ?? {};
18
+ const chg = usd.percentChange24h != null ? `${usd.percentChange24h >= 0 ? '+' : ''}${usd.percentChange24h.toFixed(2)}%` : '?';
19
+ return `${i + 1}. #${c.rank ?? '?'} ${c.name ?? '?'} (${c.symbol ?? '?'}) $${usd.price ?? '?'} ${chg}`;
20
+ }).join('\n');
21
+ }
22
+ export async function coin(args) {
23
+ const key = (args.key ?? '').trim().toLowerCase();
24
+ if (!key)
25
+ return 'Provide a coin key like bitcoin.';
26
+ const res = await fetch(`${BASE}/coins/${encodeURIComponent(key)}`, {
27
+ headers: { 'User-Agent': UA, Accept: 'application/json' },
28
+ signal: AbortSignal.timeout(20000),
29
+ });
30
+ if (!res.ok)
31
+ throw new Error(`CryptoRank returned ${res.status}`);
32
+ const d = (await res.json());
33
+ const c = d.data ?? {};
34
+ const usd = c.values?.USD ?? {};
35
+ const fmt = (n) => (n != null ? `$${n >= 1000 ? n.toLocaleString() : n}` : '?');
36
+ return [
37
+ `CryptoRank ${c.name ?? key} (${c.symbol ?? '?'})`,
38
+ c.rank != null ? `Rank: #${c.rank}` : null,
39
+ `Price: ${fmt(usd.price)}`,
40
+ usd.percentChange24h != null ? `24h: ${usd.percentChange24h >= 0 ? '+' : ''}${usd.percentChange24h.toFixed(2)}%` : null,
41
+ usd.marketCap != null ? `Market cap: ${fmt(usd.marketCap)}` : null,
42
+ usd.volume24h != null ? `Volume 24h: ${fmt(usd.volume24h)}` : null,
43
+ c.description ? `Description: ${c.description.slice(0, 300)}` : null,
44
+ ].filter(Boolean).join('\n');
45
+ }
package/dist/index.js ADDED
@@ -0,0 +1,4 @@
1
+ import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
2
+ import { createServer } from "./server.js";
3
+ const main = async () => { const server = createServer(); await server.connect(new StdioServerTransport()); };
4
+ main().catch((error) => { console.error("Fatal error:", error); process.exit(1); });
package/dist/server.js ADDED
@@ -0,0 +1,38 @@
1
+ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
+ import { z } from "zod";
3
+ import { coin } from "./api.js";
4
+ import { coins } from "./api.js";
5
+ const text = (value) => ({ content: [{ type: "text", text: value }] });
6
+ const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
7
+ const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
8
+ const error = (e) => `Error: ${e instanceof Error ? e.message : String(e)}`;
9
+ export function createServer() {
10
+ const server = new McpServer({ name: "cryptorank-mcp", version: "1.0.0" });
11
+ server.registerTool("coins", {
12
+ title: "Coins",
13
+ description: "List ranked coins.",
14
+ inputSchema: z.object({ limit: z.number().describe("Max results.").optional() }),
15
+ annotations: READ_ONLY,
16
+ }, async (args) => {
17
+ try {
18
+ return text(await coins(args));
19
+ }
20
+ catch (e) {
21
+ return textError(error(e));
22
+ }
23
+ });
24
+ server.registerTool("coin", {
25
+ title: "Coin",
26
+ description: "Get a coin by key.",
27
+ inputSchema: z.object({ key: z.string().describe("Coin key like bitcoin.") }),
28
+ annotations: READ_ONLY,
29
+ }, async (args) => {
30
+ try {
31
+ return text(await coin(args));
32
+ }
33
+ catch (e) {
34
+ return textError(error(e));
35
+ }
36
+ });
37
+ return server;
38
+ }
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "version": "1.0.0",
3
+ "type": "module",
4
+ "repository": {
5
+ "type": "git",
6
+ "url": "https://github.com/mrfentmen/cryptorank-mcp.git"
7
+ },
8
+ "bin": {
9
+ "cryptorank-mcp": "./dist/index.js"
10
+ },
11
+ "main": "./dist/index.js",
12
+ "files": [
13
+ "dist",
14
+ "server.json",
15
+ "README.md"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsc -p tsconfig.json",
19
+ "start": "node dist/index.js",
20
+ "dev": "npm run build && node dist/index.js"
21
+ },
22
+ "license": "MIT",
23
+ "dependencies": {
24
+ "@modelcontextprotocol/sdk": "^1.0.4",
25
+ "zod": "^3.23.8"
26
+ },
27
+ "devDependencies": {
28
+ "@types/node": "^22.0.0",
29
+ "typescript": "^5.6.0"
30
+ },
31
+ "name": "cryptorank-mcp",
32
+ "description": "Crypto rankings from CryptoRank. No key required.",
33
+ "mcpName": "io.github.mrfentmen/cryptorank-mcp",
34
+ "keywords": [
35
+ "mcp",
36
+ "cryptorank",
37
+ "crypto",
38
+ "rankings",
39
+ "market"
40
+ ],
41
+ "engines": {
42
+ "node": ">=20"
43
+ }
44
+ }
package/server.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
+ "name": "io.github.mrfentmen/cryptorank-mcp",
4
+ "description": "Crypto rankings from CryptoRank. No key required.",
5
+ "repository": {
6
+ "url": "https://github.com/mrfentmen/cryptorank-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "cryptorank-mcp",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }