opentalk2html-notmd 0.1.2__py3-none-any.whl

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.
@@ -0,0 +1,8 @@
1
+ """
2
+ opentalk2html-notmd — Five-tier MCP server for lightning-fast HTML generation.
3
+
4
+ This is a Python wrapper that delegates to the Node.js MCP server
5
+ via ``npx``. Requires Node.js >= 20 and npm to be installed.
6
+ """
7
+
8
+ __version__ = "0.1.2"
@@ -0,0 +1,5 @@
1
+ """Allow running via ``python -m fast_html_mcp_server``."""
2
+
3
+ from .cli import main
4
+
5
+ main()
@@ -0,0 +1,37 @@
1
+ """
2
+ CLI entry point for opentalk2html-notmd.
3
+
4
+ Delegates to the Node.js server via ``npx @aimino/opentalk2html-notmd``.
5
+ """
6
+
7
+ import subprocess
8
+ import sys
9
+ import shutil
10
+
11
+
12
+ def main() -> None:
13
+ """Run the Node.js MCP server via npx."""
14
+ npx = shutil.which("npx")
15
+ if npx is None:
16
+ print(
17
+ "Error: npx not found. Install Node.js >= 20 from https://nodejs.org",
18
+ file=sys.stderr,
19
+ )
20
+ sys.exit(1)
21
+
22
+ cmd = [npx, "-y", "@aimino/opentalk2html-notmd"]
23
+ try:
24
+ proc = subprocess.run(cmd)
25
+ sys.exit(proc.returncode)
26
+ except KeyboardInterrupt:
27
+ sys.exit(0)
28
+ except FileNotFoundError:
29
+ print(
30
+ "Error: npx not found. Install Node.js >= 20 from https://nodejs.org",
31
+ file=sys.stderr,
32
+ )
33
+ sys.exit(1)
34
+
35
+
36
+ if __name__ == "__main__":
37
+ main()
@@ -0,0 +1,38 @@
1
+ Metadata-Version: 2.4
2
+ Name: opentalk2html-notmd
3
+ Version: 0.1.2
4
+ Summary: Five-tier MCP server for lightning-fast HTML generation from AI agents
5
+ Author-email: Aimino Tech <hello@syntaro.io>
6
+ Maintainer-email: Aimino Tech <hello@syntaro.io>
7
+ License: GPL-3.0-only
8
+ Project-URL: Homepage, https://github.com/Aimino-Tech/OpenTalk2HTML-NotMD
9
+ Project-URL: Repository, https://github.com/Aimino-Tech/OpenTalk2HTML-NotMD
10
+ Project-URL: Documentation, https://github.com/Aimino-Tech/OpenTalk2HTML-NotMD#readme
11
+ Project-URL: Bug Tracker, https://github.com/Aimino-Tech/OpenTalk2HTML-NotMD/issues
12
+ Keywords: mcp,mcp-server,model-context-protocol,html,html-generation,ai
13
+ Classifier: Development Status :: 4 - Beta
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.8
17
+ Classifier: Programming Language :: Python :: 3.9
18
+ Classifier: Programming Language :: Python :: 3.10
19
+ Classifier: Programming Language :: Python :: 3.11
20
+ Classifier: Programming Language :: Python :: 3.12
21
+ Classifier: Programming Language :: Python :: 3.13
22
+ Classifier: Topic :: Software Development :: Code Generators
23
+ Classifier: Topic :: Internet :: WWW/HTTP
24
+ Requires-Python: >=3.8
25
+ Description-Content-Type: text/markdown
26
+
27
+ # opentalk2html-notmd
28
+
29
+ Five-tier MCP server for lightning-fast HTML generation from AI agents.
30
+
31
+ **Install:** `pip install opentalk2html-notmd` or `uvx opentalk2html-notmd`
32
+
33
+ **Usage:** This is a wrapper around the Node.js MCP server. Requires Node.js >= 20.
34
+
35
+ - `opentalk2html-notmd` — run the MCP server
36
+ - `npx -y @aimino/opentalk2html-notmd` — run directly via npm
37
+
38
+ For full documentation see: https://github.com/Aimino-Tech/opentalk2html-notmd
@@ -0,0 +1,8 @@
1
+ opentalk2html_notmd/__init__.py,sha256=2Boozf4wGyPH-K9TIzOn0ghloMC39UUrvRjmLFY3Erc,240
2
+ opentalk2html_notmd/__main__.py,sha256=qklEzs-CICt8hOkae29ONRMi5FeAIaBzi2VFwEln1uw,91
3
+ opentalk2html_notmd/cli.py,sha256=pWBld-pG7t-azUJMBMgHXxGNcxfXdbzfTgMO2Vaq3wc,851
4
+ opentalk2html_notmd-0.1.2.dist-info/METADATA,sha256=PqEbz3SDUPRvPFvrFNd039S4F1O7M5VBYpfMopXhQIo,1717
5
+ opentalk2html_notmd-0.1.2.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
6
+ opentalk2html_notmd-0.1.2.dist-info/entry_points.txt,sha256=SLcgo8_s0D1Xdi9jMZ5GfmnJksWY1ZIZEZzf-936Dys,69
7
+ opentalk2html_notmd-0.1.2.dist-info/top_level.txt,sha256=ObXVzcnPilyFdT9WkYuBC7ny2NgfZHFxRWYxxsZewHc,20
8
+ opentalk2html_notmd-0.1.2.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ opentalk2html-notmd = opentalk2html_notmd.cli:main
@@ -0,0 +1 @@
1
+ opentalk2html_notmd