radiomcp 0.1.0__tar.gz
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.
- radiomcp-0.1.0/PKG-INFO +37 -0
- radiomcp-0.1.0/README.md +19 -0
- radiomcp-0.1.0/pyproject.toml +28 -0
- radiomcp-0.1.0/radio_mcp_server.py +7 -0
- radiomcp-0.1.0/radiomcp.egg-info/PKG-INFO +37 -0
- radiomcp-0.1.0/radiomcp.egg-info/SOURCES.txt +8 -0
- radiomcp-0.1.0/radiomcp.egg-info/dependency_links.txt +1 -0
- radiomcp-0.1.0/radiomcp.egg-info/entry_points.txt +2 -0
- radiomcp-0.1.0/radiomcp.egg-info/top_level.txt +1 -0
- radiomcp-0.1.0/setup.cfg +4 -0
radiomcp-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: radiomcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MCP server for internet radio — search, play, recommend stations via Model Context Protocol
|
|
5
|
+
Author-email: meshpop <dev@mpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://mpop.dev
|
|
8
|
+
Project-URL: Repository, https://github.com/meshpop/radio
|
|
9
|
+
Project-URL: Documentation, https://mpop.dev/docs/
|
|
10
|
+
Keywords: mcp,radio,internet-radio,model-context-protocol,meshpop,airtune,streaming
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# radiomcp
|
|
20
|
+
|
|
21
|
+
MCP (Model Context Protocol) server for internet radio.
|
|
22
|
+
|
|
23
|
+
Search, play, and discover radio stations through any MCP-compatible AI client.
|
|
24
|
+
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install radiomcp
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Part of MeshPOP
|
|
32
|
+
|
|
33
|
+
Built on the [MeshPOP](https://mpop.dev) 5-layer stack. Powers [airtune.ai](https://airtune.ai).
|
|
34
|
+
|
|
35
|
+
## Status
|
|
36
|
+
|
|
37
|
+
Early development — full release coming soon.
|
radiomcp-0.1.0/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# radiomcp
|
|
2
|
+
|
|
3
|
+
MCP (Model Context Protocol) server for internet radio.
|
|
4
|
+
|
|
5
|
+
Search, play, and discover radio stations through any MCP-compatible AI client.
|
|
6
|
+
|
|
7
|
+
## Install
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install radiomcp
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
## Part of MeshPOP
|
|
14
|
+
|
|
15
|
+
Built on the [MeshPOP](https://mpop.dev) 5-layer stack. Powers [airtune.ai](https://airtune.ai).
|
|
16
|
+
|
|
17
|
+
## Status
|
|
18
|
+
|
|
19
|
+
Early development — full release coming soon.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "radiomcp"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "MCP server for internet radio — search, play, recommend stations via Model Context Protocol"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {text = "MIT"}
|
|
11
|
+
authors = [{name = "meshpop", email = "dev@mpop.dev"}]
|
|
12
|
+
requires-python = ">=3.8"
|
|
13
|
+
keywords = ["mcp", "radio", "internet-radio", "model-context-protocol", "meshpop", "airtune", "streaming"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 2 - Pre-Alpha",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Programming Language :: Python :: 3",
|
|
19
|
+
"Topic :: Multimedia :: Sound/Audio",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://mpop.dev"
|
|
24
|
+
Repository = "https://github.com/meshpop/radio"
|
|
25
|
+
Documentation = "https://mpop.dev/docs/"
|
|
26
|
+
|
|
27
|
+
[project.scripts]
|
|
28
|
+
radio-mcp = "radio_mcp_server:main"
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: radiomcp
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: MCP server for internet radio — search, play, recommend stations via Model Context Protocol
|
|
5
|
+
Author-email: meshpop <dev@mpop.dev>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://mpop.dev
|
|
8
|
+
Project-URL: Repository, https://github.com/meshpop/radio
|
|
9
|
+
Project-URL: Documentation, https://mpop.dev/docs/
|
|
10
|
+
Keywords: mcp,radio,internet-radio,model-context-protocol,meshpop,airtune,streaming
|
|
11
|
+
Classifier: Development Status :: 2 - Pre-Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Topic :: Multimedia :: Sound/Audio
|
|
16
|
+
Requires-Python: >=3.8
|
|
17
|
+
Description-Content-Type: text/markdown
|
|
18
|
+
|
|
19
|
+
# radiomcp
|
|
20
|
+
|
|
21
|
+
MCP (Model Context Protocol) server for internet radio.
|
|
22
|
+
|
|
23
|
+
Search, play, and discover radio stations through any MCP-compatible AI client.
|
|
24
|
+
|
|
25
|
+
## Install
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
pip install radiomcp
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
## Part of MeshPOP
|
|
32
|
+
|
|
33
|
+
Built on the [MeshPOP](https://mpop.dev) 5-layer stack. Powers [airtune.ai](https://airtune.ai).
|
|
34
|
+
|
|
35
|
+
## Status
|
|
36
|
+
|
|
37
|
+
Early development — full release coming soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
radio_mcp_server
|
radiomcp-0.1.0/setup.cfg
ADDED