mcp-test-harness 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.
Files changed (33) hide show
  1. mcp_test_harness-0.1.0/.gitignore +36 -0
  2. mcp_test_harness-0.1.0/LICENSE +48 -0
  3. mcp_test_harness-0.1.0/PKG-INFO +647 -0
  4. mcp_test_harness-0.1.0/README.md +566 -0
  5. mcp_test_harness-0.1.0/docs/DECISIONS.md +73 -0
  6. mcp_test_harness-0.1.0/docs/DEVELOPER_GUIDE.md +1119 -0
  7. mcp_test_harness-0.1.0/docs/TUTORIAL.md +453 -0
  8. mcp_test_harness-0.1.0/examples/basic_usage.py +54 -0
  9. mcp_test_harness-0.1.0/examples/reference_plugin.py +241 -0
  10. mcp_test_harness-0.1.0/examples/version_gate.py +52 -0
  11. mcp_test_harness-0.1.0/pyproject.toml +58 -0
  12. mcp_test_harness-0.1.0/scripts/build_binary.py +108 -0
  13. mcp_test_harness-0.1.0/scripts/verify_upstream.py +28 -0
  14. mcp_test_harness-0.1.0/src/mcp_test_harness/__init__.py +35 -0
  15. mcp_test_harness-0.1.0/src/mcp_test_harness/assertions.py +490 -0
  16. mcp_test_harness-0.1.0/src/mcp_test_harness/cli.py +225 -0
  17. mcp_test_harness-0.1.0/src/mcp_test_harness/config.py +459 -0
  18. mcp_test_harness-0.1.0/src/mcp_test_harness/discovery.py +286 -0
  19. mcp_test_harness-0.1.0/src/mcp_test_harness/executor.py +263 -0
  20. mcp_test_harness-0.1.0/src/mcp_test_harness/fixtures.py +385 -0
  21. mcp_test_harness-0.1.0/src/mcp_test_harness/html_reporter.py +96 -0
  22. mcp_test_harness-0.1.0/src/mcp_test_harness/lifecycle.py +331 -0
  23. mcp_test_harness-0.1.0/src/mcp_test_harness/models.py +122 -0
  24. mcp_test_harness-0.1.0/src/mcp_test_harness/parser.py +234 -0
  25. mcp_test_harness-0.1.0/src/mcp_test_harness/plugins.py +319 -0
  26. mcp_test_harness-0.1.0/src/mcp_test_harness/py.typed +1 -0
  27. mcp_test_harness-0.1.0/src/mcp_test_harness/reporting.py +228 -0
  28. mcp_test_harness-0.1.0/src/mcp_test_harness/scheduler.py +335 -0
  29. mcp_test_harness-0.1.0/src/mcp_test_harness/schema.py +455 -0
  30. mcp_test_harness-0.1.0/src/mcp_test_harness/snapshots.py +109 -0
  31. mcp_test_harness-0.1.0/src/mcp_test_harness/transport.py +241 -0
  32. mcp_test_harness-0.1.0/src/mcplint/__init__.py +20 -0
  33. mcp_test_harness-0.1.0/src/mcplint/py.typed +1 -0
@@ -0,0 +1,36 @@
1
+ # Virtual environments
2
+ .venv/
3
+ venv/
4
+ env/
5
+
6
+ # Python
7
+ __pycache__/
8
+ *.py[cod]
9
+ *.pyo
10
+ *.egg-info/
11
+ *.egg
12
+
13
+ # Build artifacts
14
+ dist/
15
+ build/
16
+
17
+ # Test / coverage
18
+ .pytest_cache/
19
+ .coverage
20
+ htmlcov/
21
+
22
+ # PyInstaller
23
+ *.manifest
24
+ *.spec.bak
25
+
26
+ # Kiro
27
+ .kiro/
28
+
29
+ # IDE
30
+ .cursor/
31
+ .idea/
32
+ .vscode/
33
+ *.swp
34
+ *.swo
35
+ .DS_Store
36
+ Thumbs.db
@@ -0,0 +1,48 @@
1
+ MCP Test Harness License
2
+
3
+ Copyright (c) 2024 Vaquar Khan
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 use,
7
+ copy, modify, merge, publish, and distribute the Software, subject to the
8
+ following conditions:
9
+
10
+ 1. ATTRIBUTION REQUIRED
11
+ All copies, modified versions, derivative works, and any public use of
12
+ this Software must include clear and visible attribution to the original
13
+ author:
14
+
15
+ Vaquar Khan -- https://github.com/vaquarkhan
16
+
17
+ This attribution must appear in at least one of the following:
18
+ - The project README or documentation
19
+ - A NOTICE or CREDITS file distributed with the software
20
+ - The "About" section of any user-facing application
21
+
22
+ 2. NON-COMMERCIAL USE ONLY
23
+ This Software may NOT be used, in whole or in part, for commercial
24
+ purposes. "Commercial purposes" means any activity primarily intended
25
+ for or directed toward commercial advantage or monetary compensation.
26
+
27
+ Examples of prohibited commercial use include, but are not limited to:
28
+ - Selling the Software or derivative works
29
+ - Using the Software in a paid product or service
30
+ - Using the Software internally at a for-profit company for
31
+ revenue-generating operations
32
+
33
+ If you wish to use this Software for commercial purposes, you must
34
+ obtain a separate written license from the copyright holder.
35
+
36
+ 3. REDISTRIBUTION
37
+ Redistribution of the Software, with or without modification, is
38
+ permitted provided that conditions 1 and 2 above are met and this
39
+ license notice is included in all copies or substantial portions of
40
+ the Software.
41
+
42
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
48
+ SOFTWARE.