your-docs-server 1.0.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.
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.4
2
+ Name: your-docs-server
3
+ Version: 1.0.0
4
+ Summary: Full-featured documentation server with MCP, web UI, and REST API — convenience install for your-docs-mcp
5
+ Author: MCP Contributors
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/esola-thomas/your-docs-mcp
8
+ Project-URL: Repository, https://github.com/esola-thomas/your-docs-mcp
9
+ Project-URL: Main Package, https://pypi.org/project/your-docs-mcp/
10
+ Project-URL: Issue Tracker, https://github.com/esola-thomas/your-docs-mcp/issues
11
+ Keywords: mcp,documentation,server,web,fastapi
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: your-docs-mcp[server]>=0.1.0
22
+
23
+ # your-docs-server
24
+
25
+ Full-featured documentation server with MCP protocol support, server-rendered web UI, and REST API.
26
+
27
+ This is a convenience meta-package that installs [`your-docs-mcp`](https://pypi.org/project/your-docs-mcp/) with the `[server]` extras (MCP + web server + OpenAPI support).
28
+
29
+ ## Installation
30
+
31
+ ```bash
32
+ pip install your-docs-server
33
+ ```
34
+
35
+ This is equivalent to:
36
+
37
+ ```bash
38
+ pip install "your-docs-mcp[server]"
39
+ ```
40
+
41
+ ## Quick Start
42
+
43
+ ```bash
44
+ # Point to your markdown documentation
45
+ export DOCS_ROOT=/path/to/your/docs
46
+
47
+ # Start the server (MCP + Web UI)
48
+ your-docs-server
49
+ ```
50
+
51
+ The web UI is available at `http://127.0.0.1:8123/docs/` with:
52
+ - Server-rendered documentation pages with full SEO support
53
+ - Search with keyword + semantic matching
54
+ - Dark/light theme toggle
55
+ - Mobile-responsive layout
56
+ - REST API at `/api/*`
57
+ - MCP protocol via SSE at `/sse`
58
+
59
+ ## Other Install Flavors
60
+
61
+ | Command | What you get |
62
+ |---------|-------------|
63
+ | `pip install your-docs-mcp` | MCP server only (for Claude Desktop, VS Code) |
64
+ | `pip install your-docs-server` | Full server (MCP + Web UI + REST API) |
65
+ | `pip install "your-docs-mcp[full]"` | Everything (+ vector search + PDF generation) |
66
+
67
+ For full documentation, configuration, and API reference, see the [main project repository](https://github.com/esola-thomas/your-docs-mcp).
@@ -0,0 +1,45 @@
1
+ # your-docs-server
2
+
3
+ Full-featured documentation server with MCP protocol support, server-rendered web UI, and REST API.
4
+
5
+ This is a convenience meta-package that installs [`your-docs-mcp`](https://pypi.org/project/your-docs-mcp/) with the `[server]` extras (MCP + web server + OpenAPI support).
6
+
7
+ ## Installation
8
+
9
+ ```bash
10
+ pip install your-docs-server
11
+ ```
12
+
13
+ This is equivalent to:
14
+
15
+ ```bash
16
+ pip install "your-docs-mcp[server]"
17
+ ```
18
+
19
+ ## Quick Start
20
+
21
+ ```bash
22
+ # Point to your markdown documentation
23
+ export DOCS_ROOT=/path/to/your/docs
24
+
25
+ # Start the server (MCP + Web UI)
26
+ your-docs-server
27
+ ```
28
+
29
+ The web UI is available at `http://127.0.0.1:8123/docs/` with:
30
+ - Server-rendered documentation pages with full SEO support
31
+ - Search with keyword + semantic matching
32
+ - Dark/light theme toggle
33
+ - Mobile-responsive layout
34
+ - REST API at `/api/*`
35
+ - MCP protocol via SSE at `/sse`
36
+
37
+ ## Other Install Flavors
38
+
39
+ | Command | What you get |
40
+ |---------|-------------|
41
+ | `pip install your-docs-mcp` | MCP server only (for Claude Desktop, VS Code) |
42
+ | `pip install your-docs-server` | Full server (MCP + Web UI + REST API) |
43
+ | `pip install "your-docs-mcp[full]"` | Everything (+ vector search + PDF generation) |
44
+
45
+ For full documentation, configuration, and API reference, see the [main project repository](https://github.com/esola-thomas/your-docs-mcp).
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "your-docs-server"
7
+ version = "1.0.0"
8
+ description = "Full-featured documentation server with MCP, web UI, and REST API — convenience install for your-docs-mcp"
9
+ readme = "README.md"
10
+ license = {text = "MIT"}
11
+ requires-python = ">=3.10"
12
+ authors = [
13
+ {name = "MCP Contributors"}
14
+ ]
15
+ keywords = ["mcp", "documentation", "server", "web", "fastapi"]
16
+ classifiers = [
17
+ "Development Status :: 3 - Alpha",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.10",
22
+ "Programming Language :: Python :: 3.11",
23
+ "Programming Language :: Python :: 3.12",
24
+ ]
25
+
26
+ dependencies = [
27
+ "your-docs-mcp[server]>=0.1.0",
28
+ ]
29
+
30
+ [project.scripts]
31
+ your-docs-server = "docs_mcp.__main__:main"
32
+
33
+ [project.urls]
34
+ Homepage = "https://github.com/esola-thomas/your-docs-mcp"
35
+ Repository = "https://github.com/esola-thomas/your-docs-mcp"
36
+ "Main Package" = "https://pypi.org/project/your-docs-mcp/"
37
+ "Issue Tracker" = "https://github.com/esola-thomas/your-docs-mcp/issues"
38
+
39
+ [tool.setuptools]
40
+ py-modules = []
41
+ packages = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,67 @@
1
+ Metadata-Version: 2.4
2
+ Name: your-docs-server
3
+ Version: 1.0.0
4
+ Summary: Full-featured documentation server with MCP, web UI, and REST API — convenience install for your-docs-mcp
5
+ Author: MCP Contributors
6
+ License: MIT
7
+ Project-URL: Homepage, https://github.com/esola-thomas/your-docs-mcp
8
+ Project-URL: Repository, https://github.com/esola-thomas/your-docs-mcp
9
+ Project-URL: Main Package, https://pypi.org/project/your-docs-mcp/
10
+ Project-URL: Issue Tracker, https://github.com/esola-thomas/your-docs-mcp/issues
11
+ Keywords: mcp,documentation,server,web,fastapi
12
+ Classifier: Development Status :: 3 - Alpha
13
+ Classifier: Intended Audience :: Developers
14
+ Classifier: License :: OSI Approved :: MIT License
15
+ Classifier: Programming Language :: Python :: 3
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Requires-Python: >=3.10
20
+ Description-Content-Type: text/markdown
21
+ Requires-Dist: your-docs-mcp[server]>=0.1.0
22
+
23
+ # your-docs-server
24
+
25
+ Full-featured documentation server with MCP protocol support, server-rendered web UI, and REST API.
26
+
27
+ This is a convenience meta-package that installs [`your-docs-mcp`](https://pypi.org/project/your-docs-mcp/) with the `[server]` extras (MCP + web server + OpenAPI support).
28
+
29
+ ## Installation
30
+
31
+ ```bash
32
+ pip install your-docs-server
33
+ ```
34
+
35
+ This is equivalent to:
36
+
37
+ ```bash
38
+ pip install "your-docs-mcp[server]"
39
+ ```
40
+
41
+ ## Quick Start
42
+
43
+ ```bash
44
+ # Point to your markdown documentation
45
+ export DOCS_ROOT=/path/to/your/docs
46
+
47
+ # Start the server (MCP + Web UI)
48
+ your-docs-server
49
+ ```
50
+
51
+ The web UI is available at `http://127.0.0.1:8123/docs/` with:
52
+ - Server-rendered documentation pages with full SEO support
53
+ - Search with keyword + semantic matching
54
+ - Dark/light theme toggle
55
+ - Mobile-responsive layout
56
+ - REST API at `/api/*`
57
+ - MCP protocol via SSE at `/sse`
58
+
59
+ ## Other Install Flavors
60
+
61
+ | Command | What you get |
62
+ |---------|-------------|
63
+ | `pip install your-docs-mcp` | MCP server only (for Claude Desktop, VS Code) |
64
+ | `pip install your-docs-server` | Full server (MCP + Web UI + REST API) |
65
+ | `pip install "your-docs-mcp[full]"` | Everything (+ vector search + PDF generation) |
66
+
67
+ For full documentation, configuration, and API reference, see the [main project repository](https://github.com/esola-thomas/your-docs-mcp).
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ your_docs_server.egg-info/PKG-INFO
4
+ your_docs_server.egg-info/SOURCES.txt
5
+ your_docs_server.egg-info/dependency_links.txt
6
+ your_docs_server.egg-info/entry_points.txt
7
+ your_docs_server.egg-info/requires.txt
8
+ your_docs_server.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ your-docs-server = docs_mcp.__main__:main
@@ -0,0 +1 @@
1
+ your-docs-mcp[server]>=0.1.0