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.
- mcp_test_harness-0.1.0/.gitignore +36 -0
- mcp_test_harness-0.1.0/LICENSE +48 -0
- mcp_test_harness-0.1.0/PKG-INFO +647 -0
- mcp_test_harness-0.1.0/README.md +566 -0
- mcp_test_harness-0.1.0/docs/DECISIONS.md +73 -0
- mcp_test_harness-0.1.0/docs/DEVELOPER_GUIDE.md +1119 -0
- mcp_test_harness-0.1.0/docs/TUTORIAL.md +453 -0
- mcp_test_harness-0.1.0/examples/basic_usage.py +54 -0
- mcp_test_harness-0.1.0/examples/reference_plugin.py +241 -0
- mcp_test_harness-0.1.0/examples/version_gate.py +52 -0
- mcp_test_harness-0.1.0/pyproject.toml +58 -0
- mcp_test_harness-0.1.0/scripts/build_binary.py +108 -0
- mcp_test_harness-0.1.0/scripts/verify_upstream.py +28 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/__init__.py +35 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/assertions.py +490 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/cli.py +225 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/config.py +459 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/discovery.py +286 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/executor.py +263 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/fixtures.py +385 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/html_reporter.py +96 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/lifecycle.py +331 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/models.py +122 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/parser.py +234 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/plugins.py +319 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/py.typed +1 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/reporting.py +228 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/scheduler.py +335 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/schema.py +455 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/snapshots.py +109 -0
- mcp_test_harness-0.1.0/src/mcp_test_harness/transport.py +241 -0
- mcp_test_harness-0.1.0/src/mcplint/__init__.py +20 -0
- 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.
|