gopher-mcp 0.2.1__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.
Files changed (68) hide show
  1. gopher_mcp-0.2.1/.gitignore +231 -0
  2. gopher_mcp-0.2.1/CHANGELOG.md +102 -0
  3. gopher_mcp-0.2.1/LICENSE +21 -0
  4. gopher_mcp-0.2.1/PKG-INFO +501 -0
  5. gopher_mcp-0.2.1/README.md +436 -0
  6. gopher_mcp-0.2.1/docs/PYPI_SETUP.md +281 -0
  7. gopher_mcp-0.2.1/docs/RELEASE_CHECKLIST.md +249 -0
  8. gopher_mcp-0.2.1/docs/RELEASE_PROCESS.md +256 -0
  9. gopher_mcp-0.2.1/docs/RELEASE_SUMMARY.md +279 -0
  10. gopher_mcp-0.2.1/docs/TESTING_RELEASES.md +280 -0
  11. gopher_mcp-0.2.1/docs/advanced-features.md +309 -0
  12. gopher_mcp-0.2.1/docs/ai-assistant-guide.md +312 -0
  13. gopher_mcp-0.2.1/docs/api-reference.md +389 -0
  14. gopher_mcp-0.2.1/docs/contributing.md +341 -0
  15. gopher_mcp-0.2.1/docs/development/gemini_api_contracts.md +356 -0
  16. gopher_mcp-0.2.1/docs/development/gemini_project_timeline.md +398 -0
  17. gopher_mcp-0.2.1/docs/development/gemini_security_architecture.md +466 -0
  18. gopher_mcp-0.2.1/docs/development/open-source-release-checklist.md +218 -0
  19. gopher_mcp-0.2.1/docs/development/repository-setup.md +220 -0
  20. gopher_mcp-0.2.1/docs/gemini-configuration.md +262 -0
  21. gopher_mcp-0.2.1/docs/gemini-specification-for-llms.md +774 -0
  22. gopher_mcp-0.2.1/docs/gemini-support.md +312 -0
  23. gopher_mcp-0.2.1/docs/gemini-troubleshooting.md +357 -0
  24. gopher_mcp-0.2.1/docs/gopher-specification-for-llms.md +434 -0
  25. gopher_mcp-0.2.1/docs/index.md +102 -0
  26. gopher_mcp-0.2.1/docs/installation.md +114 -0
  27. gopher_mcp-0.2.1/docs/javascripts/mathjax.js +17 -0
  28. gopher_mcp-0.2.1/docs/migration-guide.md +340 -0
  29. gopher_mcp-0.2.1/docs/stylesheets/extra.css +51 -0
  30. gopher_mcp-0.2.1/docs/task-runner.md +139 -0
  31. gopher_mcp-0.2.1/pyproject.toml +241 -0
  32. gopher_mcp-0.2.1/src/gopher_mcp/__init__.py +18 -0
  33. gopher_mcp-0.2.1/src/gopher_mcp/__main__.py +23 -0
  34. gopher_mcp-0.2.1/src/gopher_mcp/certificate_errors.py +562 -0
  35. gopher_mcp-0.2.1/src/gopher_mcp/client_certs.py +388 -0
  36. gopher_mcp-0.2.1/src/gopher_mcp/fingerprints.py +439 -0
  37. gopher_mcp-0.2.1/src/gopher_mcp/gemini_client.py +501 -0
  38. gopher_mcp-0.2.1/src/gopher_mcp/gemini_tls.py +349 -0
  39. gopher_mcp-0.2.1/src/gopher_mcp/gopher_client.py +408 -0
  40. gopher_mcp-0.2.1/src/gopher_mcp/http_server.py +153 -0
  41. gopher_mcp-0.2.1/src/gopher_mcp/models.py +722 -0
  42. gopher_mcp-0.2.1/src/gopher_mcp/security.py +311 -0
  43. gopher_mcp-0.2.1/src/gopher_mcp/security_policy.py +479 -0
  44. gopher_mcp-0.2.1/src/gopher_mcp/server.py +144 -0
  45. gopher_mcp-0.2.1/src/gopher_mcp/tofu.py +311 -0
  46. gopher_mcp-0.2.1/src/gopher_mcp/tools.py +89 -0
  47. gopher_mcp-0.2.1/src/gopher_mcp/utils.py +1419 -0
  48. gopher_mcp-0.2.1/tests/__init__.py +1 -0
  49. gopher_mcp-0.2.1/tests/conftest.py +183 -0
  50. gopher_mcp-0.2.1/tests/test_certificate_errors.py +650 -0
  51. gopher_mcp-0.2.1/tests/test_client_certs.py +515 -0
  52. gopher_mcp-0.2.1/tests/test_fingerprints.py +705 -0
  53. gopher_mcp-0.2.1/tests/test_gemini_client.py +556 -0
  54. gopher_mcp-0.2.1/tests/test_gemini_models.py +723 -0
  55. gopher_mcp-0.2.1/tests/test_gemini_status.py +594 -0
  56. gopher_mcp-0.2.1/tests/test_gemini_tls.py +468 -0
  57. gopher_mcp-0.2.1/tests/test_gemini_utils.py +470 -0
  58. gopher_mcp-0.2.1/tests/test_gopher_client.py +905 -0
  59. gopher_mcp-0.2.1/tests/test_http_server.py +318 -0
  60. gopher_mcp-0.2.1/tests/test_models.py +271 -0
  61. gopher_mcp-0.2.1/tests/test_performance.py +466 -0
  62. gopher_mcp-0.2.1/tests/test_placeholder.py +49 -0
  63. gopher_mcp-0.2.1/tests/test_security.py +444 -0
  64. gopher_mcp-0.2.1/tests/test_security_additional.py +74 -0
  65. gopher_mcp-0.2.1/tests/test_server.py +374 -0
  66. gopher_mcp-0.2.1/tests/test_tofu.py +568 -0
  67. gopher_mcp-0.2.1/tests/test_tools.py +185 -0
  68. gopher_mcp-0.2.1/tests/test_utils.py +359 -0
@@ -0,0 +1,231 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ env/
142
+ venv/
143
+ ENV/
144
+ env.bak/
145
+ venv.bak/
146
+
147
+ # Spyder project settings
148
+ .spyderproject
149
+ .spyproject
150
+
151
+ # Rope project settings
152
+ .ropeproject
153
+
154
+ # mkdocs documentation
155
+ /site
156
+
157
+ # mypy
158
+ .mypy_cache/
159
+ .dmypy.json
160
+ dmypy.json
161
+
162
+ # Pyre type checker
163
+ .pyre/
164
+
165
+ # pytype static type analyzer
166
+ .pytype/
167
+
168
+ # Cython debug symbols
169
+ cython_debug/
170
+
171
+ # PyCharm
172
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
173
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
174
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
175
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
176
+ .idea/
177
+
178
+ # Abstra
179
+ # Abstra is an AI-powered process automation framework.
180
+ # Ignore directories containing user credentials, local state, and settings.
181
+ # Learn more at https://abstra.io/docs
182
+ .abstra/
183
+
184
+ # Visual Studio Code
185
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
186
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
187
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
188
+ # you could uncomment the following to ignore the entire vscode folder
189
+ .vscode/
190
+
191
+ # Ruff stuff:
192
+ .ruff_cache/
193
+
194
+ # PyPI configuration file
195
+ .pypirc
196
+
197
+ # Cursor
198
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
199
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
200
+ # refer to https://docs.cursor.com/context/ignore-files
201
+ .cursorignore
202
+ .cursorindexingignore
203
+
204
+ # Marimo
205
+ marimo/_static/
206
+ marimo/_lsp/
207
+ __marimo__/
208
+
209
+ # Security reports (generated in CI/CD)
210
+ *-report.json
211
+ security-*.json
212
+ bandit-report.json
213
+ safety-report.json
214
+
215
+ # OS-specific files
216
+ .DS_Store
217
+ .DS_Store?
218
+ ._*
219
+ .Spotlight-V100
220
+ .Trashes
221
+ ehthumbs.db
222
+ Thumbs.db
223
+ desktop.ini
224
+
225
+ # Temporary files
226
+ *.tmp
227
+ *.temp
228
+ *.bak
229
+ *.orig
230
+ *.swp
231
+ *~
@@ -0,0 +1,102 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ ## [Unreleased]
9
+
10
+ ### Added
11
+
12
+ - TBD
13
+
14
+ ### Changed
15
+
16
+ - TBD
17
+
18
+ ### Fixed
19
+
20
+ - TBD
21
+
22
+ ## [0.2.1] - 2025-01-18
23
+
24
+ ### Added
25
+
26
+ #### Gemini Protocol Support (NEW)
27
+
28
+ - Complete Gemini protocol v0.16.1 implementation
29
+ - `gemini_fetch` MCP tool for Gemini protocol access
30
+ - TLS 1.2+ client with mandatory SNI support
31
+ - TOFU (Trust-on-First-Use) certificate validation system
32
+ - Client certificate generation and management
33
+ - Gemtext parser with structured output for AI consumption
34
+ - Dual-protocol MCP server supporting both Gopher and Gemini
35
+ - Protocol-isolated caching systems
36
+ - Comprehensive security features and host allowlists
37
+
38
+ #### Security Features
39
+
40
+ - TOFU certificate fingerprint storage and validation
41
+ - Automatic client certificate generation per hostname/path scope
42
+ - TLS security configuration with minimum version enforcement
43
+ - Certificate validation error handling and recovery
44
+ - Host allowlists for both protocols
45
+ - Enhanced input validation and sanitization
46
+ - Security policy enforcement for connections
47
+
48
+ #### Documentation
49
+
50
+ - Comprehensive Gemini support documentation
51
+ - API reference for both protocols
52
+ - AI assistant usage guide
53
+ - Advanced features documentation
54
+ - Configuration reference with all environment variables
55
+ - Troubleshooting guide and FAQ
56
+ - Integration examples and best practices
57
+ - Migration guide for existing users
58
+
59
+ #### Testing and Quality Assurance
60
+
61
+ - Comprehensive test suite for Gemini protocol
62
+ - Security and penetration testing
63
+ - Performance and load testing
64
+ - Integration tests for dual-protocol operation
65
+ - Test coverage >95% for all new features
66
+
67
+ ### Changed
68
+
69
+ - Updated package metadata to reflect dual-protocol support
70
+ - Enhanced error handling and logging across both protocols
71
+ - Improved configuration validation and defaults
72
+ - Updated dependencies to include cryptography for certificate management
73
+
74
+ ### Security
75
+
76
+ - TLS 1.2+ enforcement for all Gemini connections
77
+ - Certificate fingerprint validation with TOFU
78
+ - Secure client certificate generation and storage
79
+ - Enhanced input validation for both protocols
80
+ - Connection timeout and size limit enforcement
81
+
82
+ ## [0.1.0] - 2025-01-XX
83
+
84
+ ### Added
85
+
86
+ - Initial release of Gopher MCP server
87
+ - Support for basic Gopher protocol operations
88
+ - MCP tool: `gopher.fetch` for retrieving Gopher resources
89
+ - Support for Gopher item types: 0 (text), 1 (menu), 7 (search), 9 (binary)
90
+ - Structured JSON responses optimized for LLM consumption
91
+ - Async implementation with connection pooling
92
+ - In-memory LRU cache with configurable TTL
93
+ - Comprehensive error handling and logging
94
+ - Security features: timeouts, size limits, input sanitization
95
+ - Cross-platform support (Linux, macOS, Windows)
96
+ - Both stdio and HTTP transport support
97
+ - Extensive test suite with >90% coverage
98
+ - Complete documentation and examples
99
+
100
+ [Unreleased]: https://github.com/cameronrye/gopher-mcp/compare/v0.2.1...HEAD
101
+ [0.2.1]: https://github.com/cameronrye/gopher-mcp/compare/v0.1.0...v0.2.1
102
+ [0.1.0]: https://github.com/cameronrye/gopher-mcp/releases/tag/v0.1.0
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Gopher MCP Team
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.