somafm-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
+ # SomaFM MCP
2
+
3
+ SomaFM radio channels from the public SomaFM 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
+ * `channels` List channels.
11
+ * `channel` Get a channel.
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 SomaFM API.
package/dist/api.js ADDED
@@ -0,0 +1,39 @@
1
+ const BASE = 'https://somafm.com';
2
+ async function fetchChannels() {
3
+ const res = await fetch(`${BASE}/channels.json`, {
4
+ headers: { 'User-Agent': 'mrfentmen-somafm-mcp/1.0', Accept: 'application/json' },
5
+ signal: AbortSignal.timeout(20000),
6
+ });
7
+ if (!res.ok)
8
+ throw new Error(`SomaFM returned ${res.status}`);
9
+ const d = (await res.json());
10
+ return d.channels ?? [];
11
+ }
12
+ export async function channels(args) {
13
+ const all = await fetchChannels();
14
+ const q = (args?.genre ?? '').trim().toLowerCase();
15
+ const list = q ? all.filter((c) => String(c.genre ?? c.title ?? '').toLowerCase().includes(q)) : all;
16
+ if (!list.length)
17
+ return q ? `No channels match "${q}".` : 'No channels returned.';
18
+ return `SomaFM channels (${list.length}):\n` +
19
+ list.slice(0, 30).map((c, i) => `${i + 1}. ${c.id} - ${c.title} [${c.genre ?? 'n/a'}]`).join('\n');
20
+ }
21
+ export async function channel(args) {
22
+ const id = (args.id ?? '').trim();
23
+ if (!id)
24
+ return 'Provide a channel id.';
25
+ const all = await fetchChannels();
26
+ const c = all.find((x) => x.id === id);
27
+ if (!c)
28
+ return `No channel with id "${id}".`;
29
+ const streams = (c.playlists ?? []).filter((p) => p.format === 'mp3').slice(0, 3);
30
+ return [
31
+ `${c.title} (${c.id})`,
32
+ c.genre ? `Genre: ${c.genre}` : null,
33
+ c.description ? `Description: ${c.description}` : null,
34
+ c.listeners ? `Listeners: ${c.listeners}` : null,
35
+ c.lastPlaying ? `Now playing: ${c.lastPlaying}` : null,
36
+ c.image ? `Image: ${c.image}` : null,
37
+ streams.length ? `Streams:\n${streams.map((s) => ` ${s.quality ?? 'n/a'} - ${s.url}`).join('\n')}` : null,
38
+ ].filter(Boolean).join('\n');
39
+ }
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 { channel } from "./api.js";
4
+ import { channels } 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: "somafm-mcp", version: "1.0.0" });
11
+ server.registerTool("channels", {
12
+ title: "Channels",
13
+ description: "List channels.",
14
+ inputSchema: z.object({ genre: z.string().describe("Optional genre filter.").optional() }),
15
+ annotations: READ_ONLY,
16
+ }, async (args) => {
17
+ try {
18
+ return text(await channels(args));
19
+ }
20
+ catch (e) {
21
+ return textError(error(e));
22
+ }
23
+ });
24
+ server.registerTool("channel", {
25
+ title: "Channel",
26
+ description: "Get a channel by id.",
27
+ inputSchema: z.object({ id: z.string().describe("Channel id.") }),
28
+ annotations: READ_ONLY,
29
+ }, async (args) => {
30
+ try {
31
+ return text(await channel(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/somafm-mcp.git"
7
+ },
8
+ "bin": {
9
+ "somafm-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": "somafm-mcp",
32
+ "description": "SomaFM radio channels and playlists. No key required.",
33
+ "mcpName": "io.github.mrfentmen/somafm-mcp",
34
+ "keywords": [
35
+ "mcp",
36
+ "somafm",
37
+ "radio",
38
+ "music",
39
+ "streams"
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/somafm-mcp",
4
+ "description": "SomaFM radio channels and playlists. No key required.",
5
+ "repository": {
6
+ "url": "https://github.com/mrfentmen/somafm-mcp",
7
+ "source": "github"
8
+ },
9
+ "version": "1.0.0",
10
+ "packages": [
11
+ {
12
+ "registryType": "npm",
13
+ "identifier": "somafm-mcp",
14
+ "version": "1.0.0",
15
+ "transport": {
16
+ "type": "stdio"
17
+ }
18
+ }
19
+ ]
20
+ }