somafm-mcp 1.0.0 → 1.0.1
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 +18 -0
- package/dist/api.js +33 -0
- package/dist/license.js +78 -0
- package/dist/server.js +20 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -19,3 +19,21 @@ node dist/index.js
|
|
|
19
19
|
```
|
|
20
20
|
|
|
21
21
|
Data comes from the public SomaFM API.
|
|
22
|
+
|
|
23
|
+
<!-- paywall -->
|
|
24
|
+
## Premium tools
|
|
25
|
+
|
|
26
|
+
These tools need a license key:
|
|
27
|
+
|
|
28
|
+
* `now_playing`
|
|
29
|
+
|
|
30
|
+
Buy a key at https://mcp-marketplace.io/server/io-github-mrfentmen-somafm-mcp and set it in your MCP client config:
|
|
31
|
+
|
|
32
|
+
```json
|
|
33
|
+
"env": { "MCP_LICENSE_KEY": "mcp_live_..." }
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
The key is checked against MCP Marketplace, cached for 24 hours, and keeps
|
|
37
|
+
working offline once one check has succeeded. Every other tool on this server
|
|
38
|
+
stays free.
|
|
39
|
+
<!-- /paywall -->
|
package/dist/api.js
CHANGED
|
@@ -37,3 +37,36 @@ export async function channel(args) {
|
|
|
37
37
|
streams.length ? `Streams:\n${streams.map((s) => ` ${s.quality ?? 'n/a'} - ${s.url}`).join('\n')}` : null,
|
|
38
38
|
].filter(Boolean).join('\n');
|
|
39
39
|
}
|
|
40
|
+
function songTime(seconds) {
|
|
41
|
+
const n = Number(seconds);
|
|
42
|
+
if (!Number.isFinite(n) || n <= 0)
|
|
43
|
+
return "time not reported";
|
|
44
|
+
return new Date(n * 1000).toISOString().slice(0, 16).replace("T", " ");
|
|
45
|
+
}
|
|
46
|
+
/**
|
|
47
|
+
* The play history for one channel, newest first. SomaFM's channels.json has no
|
|
48
|
+
* track data, so this is the only place the music itself is reported.
|
|
49
|
+
*/
|
|
50
|
+
export async function nowPlaying(args) {
|
|
51
|
+
const id = (args.id ?? "").trim();
|
|
52
|
+
if (!id)
|
|
53
|
+
return "Provide a channel id, e.g. groovesalad or dronezone.";
|
|
54
|
+
const limit = Math.max(1, Math.min(args.limit ?? 8, 18));
|
|
55
|
+
const res = await fetch(`${BASE}/songs/${encodeURIComponent(id)}.json`, {
|
|
56
|
+
headers: { "User-Agent": "mrfentmen-somafm-mcp/1.0", Accept: "application/json" },
|
|
57
|
+
signal: AbortSignal.timeout(20000),
|
|
58
|
+
});
|
|
59
|
+
if (!res.ok) {
|
|
60
|
+
if (res.status === 404)
|
|
61
|
+
return `No SomaFM channel with id "${id}".`;
|
|
62
|
+
throw new Error(`SomaFM returned ${res.status}`);
|
|
63
|
+
}
|
|
64
|
+
const d = (await res.json());
|
|
65
|
+
const songs = (d.songs ?? []).slice(0, limit);
|
|
66
|
+
if (!songs.length)
|
|
67
|
+
return `SomaFM reported no tracks for "${id}".`;
|
|
68
|
+
return `SomaFM ${d.id ?? id} - what it played (${songs.length} most recent):\n` +
|
|
69
|
+
songs
|
|
70
|
+
.map((s, i) => `${i + 1}. ${s.artist ?? "?"} - ${s.title ?? "?"}\n ${s.album ? `${s.album} | ` : ""}${songTime(s.date)}`)
|
|
71
|
+
.join("\n");
|
|
72
|
+
}
|
package/dist/license.js
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
// Premium tools on this server need a license key bought from MCP Marketplace.
|
|
2
|
+
// Buyers put the key in their MCP client config as MCP_LICENSE_KEY. Every tool
|
|
3
|
+
// that is not listed in PREMIUM keeps working without a key.
|
|
4
|
+
const SLUG = "somafm-mcp";
|
|
5
|
+
// Tools that need a key. Everything else is free.
|
|
6
|
+
const PREMIUM = new Set([
|
|
7
|
+
"now_playing",
|
|
8
|
+
]);
|
|
9
|
+
const BUY_URL = `https://mcp-marketplace.io/server/io-github-mrfentmen-${SLUG}`;
|
|
10
|
+
// The license check calls the marketplace's verify endpoint directly instead of
|
|
11
|
+
// using @mcp_marketplace/license. That SDK sends no `apikey` header, so every
|
|
12
|
+
// check it makes is rejected by Supabase before it reaches the function. The
|
|
13
|
+
// publishable key below is public by design - it ships in mcp-marketplace.io's
|
|
14
|
+
// own JavaScript and only ever reaches their licence check.
|
|
15
|
+
const DEFAULT_VERIFY_URL = "https://virupvwhtkpkjsiskckg.supabase.co/functions/v1/verify-key";
|
|
16
|
+
const PUBLISHABLE_KEY = "sb_publishable_BuqlW96Ke8C_zzJG-LQv1Q_YHi_r_4h";
|
|
17
|
+
const OK_CACHE_MS = 60 * 60 * 1000;
|
|
18
|
+
const BAD_CACHE_MS = 60 * 1000;
|
|
19
|
+
const seen = new Map();
|
|
20
|
+
const REASONS = {
|
|
21
|
+
missing_key: "no key is set",
|
|
22
|
+
invalid_format: "that key is not a valid MCP Marketplace key",
|
|
23
|
+
not_found: "that key was not found",
|
|
24
|
+
revoked: "that key has been revoked",
|
|
25
|
+
rotated: "that key was rotated, use your new one",
|
|
26
|
+
expired: "that key has expired, renew it",
|
|
27
|
+
rate_limited: "there were too many checks just now, try again shortly",
|
|
28
|
+
network_error: "the license server could not be reached",
|
|
29
|
+
};
|
|
30
|
+
function blocked(tool, reason) {
|
|
31
|
+
const why = REASONS[reason] ?? `the license server answered "${reason}"`;
|
|
32
|
+
return `"${tool}" needs a license key, but ${why}. ` +
|
|
33
|
+
`Set MCP_LICENSE_KEY in your MCP client config. Get a key: ${BUY_URL}`;
|
|
34
|
+
}
|
|
35
|
+
async function verify(key) {
|
|
36
|
+
const res = await fetch(process.env.MCP_LICENSE_VERIFY_URL || DEFAULT_VERIFY_URL, {
|
|
37
|
+
method: "POST",
|
|
38
|
+
headers: {
|
|
39
|
+
apikey: PUBLISHABLE_KEY,
|
|
40
|
+
Authorization: `Bearer ${PUBLISHABLE_KEY}`,
|
|
41
|
+
"Content-Type": "application/json",
|
|
42
|
+
},
|
|
43
|
+
body: JSON.stringify({ key, slug: SLUG }),
|
|
44
|
+
// an unusable key answers 400 with a JSON body, so read the body either way
|
|
45
|
+
signal: AbortSignal.timeout(15000),
|
|
46
|
+
});
|
|
47
|
+
const data = (await res.json());
|
|
48
|
+
if (typeof data?.valid !== "boolean")
|
|
49
|
+
return { valid: false, reason: "unexpected_response" };
|
|
50
|
+
return data;
|
|
51
|
+
}
|
|
52
|
+
/**
|
|
53
|
+
* Returns null when the caller may run the tool, or a short message telling
|
|
54
|
+
* them how to get a key.
|
|
55
|
+
*
|
|
56
|
+
* A good key is remembered for an hour, so a busy session does not hit the
|
|
57
|
+
* license server on every call and keeps working through a brief outage.
|
|
58
|
+
*/
|
|
59
|
+
export async function premiumRequired(tool) {
|
|
60
|
+
if (!PREMIUM.has(tool))
|
|
61
|
+
return null;
|
|
62
|
+
const key = process.env.MCP_LICENSE_KEY;
|
|
63
|
+
if (!key)
|
|
64
|
+
return blocked(tool, "missing_key");
|
|
65
|
+
const hit = seen.get(key);
|
|
66
|
+
if (hit && Date.now() - hit.at < (hit.valid ? OK_CACHE_MS : BAD_CACHE_MS)) {
|
|
67
|
+
return hit.valid ? null : blocked(tool, hit.reason ?? "invalid");
|
|
68
|
+
}
|
|
69
|
+
let result;
|
|
70
|
+
try {
|
|
71
|
+
result = await verify(key);
|
|
72
|
+
}
|
|
73
|
+
catch {
|
|
74
|
+
result = { valid: false, reason: "network_error" };
|
|
75
|
+
}
|
|
76
|
+
seen.set(key, { ...result, at: Date.now() });
|
|
77
|
+
return result.valid ? null : blocked(tool, result.reason ?? "invalid");
|
|
78
|
+
}
|
package/dist/server.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
import { channel } from "./api.js";
|
|
4
|
-
import { channels } from "./api.js";
|
|
4
|
+
import { channels, nowPlaying } from "./api.js";
|
|
5
|
+
import { premiumRequired } from "./license.js";
|
|
5
6
|
const text = (value) => ({ content: [{ type: "text", text: value }] });
|
|
6
7
|
const textError = (t) => ({ content: [{ type: "text", text: t }], isError: true });
|
|
7
8
|
const READ_ONLY = { readOnlyHint: true, openWorldHint: true };
|
|
@@ -34,5 +35,23 @@ export function createServer() {
|
|
|
34
35
|
return textError(error(e));
|
|
35
36
|
}
|
|
36
37
|
});
|
|
38
|
+
server.registerTool("now_playing", {
|
|
39
|
+
title: "Now playing",
|
|
40
|
+
description: "What a SomaFM channel has actually been playing: the most recent tracks with artist, album and air time.",
|
|
41
|
+
inputSchema: z.object({ id: z.string().describe("Channel id, e.g. groovesalad."), limit: z.number().describe("Max tracks.").optional() }),
|
|
42
|
+
annotations: READ_ONLY,
|
|
43
|
+
}, async (args) => {
|
|
44
|
+
// ---- paywall: now_playing ----
|
|
45
|
+
const paywallMessage = await premiumRequired("now_playing");
|
|
46
|
+
if (paywallMessage)
|
|
47
|
+
return { content: [{ type: "text", text: paywallMessage }], isError: true };
|
|
48
|
+
// ---- paywall: end ----
|
|
49
|
+
try {
|
|
50
|
+
return text(await nowPlaying(args));
|
|
51
|
+
}
|
|
52
|
+
catch (e) {
|
|
53
|
+
return textError(error(e));
|
|
54
|
+
}
|
|
55
|
+
});
|
|
37
56
|
return server;
|
|
38
57
|
}
|
package/package.json
CHANGED