mcp-proxy-adapter 6.1.0__py3-none-any.whl â 6.2.0__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.
- mcp_proxy_adapter/__main__.py +27 -7
- mcp_proxy_adapter/api/app.py +18 -7
- mcp_proxy_adapter/api/middleware/__init__.py +2 -2
- mcp_proxy_adapter/api/middleware/protocol_middleware.py +32 -13
- mcp_proxy_adapter/api/middleware/unified_security.py +12 -4
- mcp_proxy_adapter/commands/ssl_setup_command.py +234 -351
- mcp_proxy_adapter/core/app_factory.py +87 -3
- mcp_proxy_adapter/core/app_runner.py +272 -0
- mcp_proxy_adapter/core/certificate_utils.py +291 -73
- mcp_proxy_adapter/core/client.py +574 -0
- mcp_proxy_adapter/core/client_manager.py +284 -0
- mcp_proxy_adapter/core/protocol_manager.py +132 -10
- mcp_proxy_adapter/core/security_integration.py +19 -11
- mcp_proxy_adapter/core/server_adapter.py +17 -80
- mcp_proxy_adapter/core/server_engine.py +5 -99
- mcp_proxy_adapter/core/ssl_utils.py +13 -12
- mcp_proxy_adapter/core/transport_manager.py +5 -5
- mcp_proxy_adapter/examples/__init__.py +16 -0
- mcp_proxy_adapter/examples/basic_framework/__init__.py +7 -0
- mcp_proxy_adapter/examples/basic_framework/commands/__init__.py +4 -0
- mcp_proxy_adapter/examples/basic_framework/hooks/__init__.py +4 -0
- mcp_proxy_adapter/examples/basic_framework/main.py +21 -40
- mcp_proxy_adapter/examples/commands/__init__.py +5 -1
- mcp_proxy_adapter/examples/create_certificates_simple.py +260 -75
- mcp_proxy_adapter/examples/debug_request_state.py +4 -36
- mcp_proxy_adapter/examples/debug_role_chain.py +2 -49
- mcp_proxy_adapter/examples/demo_client.py +0 -66
- mcp_proxy_adapter/examples/full_application/__init__.py +11 -0
- mcp_proxy_adapter/examples/full_application/commands/__init__.py +7 -0
- mcp_proxy_adapter/examples/full_application/commands/custom_echo_command.py +0 -19
- mcp_proxy_adapter/examples/full_application/commands/dynamic_calculator_command.py +0 -16
- mcp_proxy_adapter/examples/full_application/hooks/__init__.py +7 -0
- mcp_proxy_adapter/examples/full_application/hooks/application_hooks.py +0 -22
- mcp_proxy_adapter/examples/full_application/hooks/builtin_command_hooks.py +0 -24
- mcp_proxy_adapter/examples/full_application/main.py +65 -44
- mcp_proxy_adapter/examples/full_application/proxy_endpoints.py +154 -0
- mcp_proxy_adapter/examples/generate_all_certificates.py +0 -67
- mcp_proxy_adapter/examples/generate_certificates.py +0 -15
- mcp_proxy_adapter/examples/generate_certificates_and_tokens.py +369 -0
- mcp_proxy_adapter/examples/generate_test_configs.py +204 -0
- mcp_proxy_adapter/examples/proxy_registration_example.py +3 -70
- mcp_proxy_adapter/examples/run_example.py +1 -23
- mcp_proxy_adapter/examples/run_security_tests.py +2 -60
- mcp_proxy_adapter/examples/run_security_tests_fixed.py +0 -53
- mcp_proxy_adapter/examples/security_test_client.py +18 -123
- mcp_proxy_adapter/examples/setup_test_environment.py +179 -0
- mcp_proxy_adapter/examples/test_config.py +148 -0
- mcp_proxy_adapter/examples/test_config_generator.py +86 -0
- mcp_proxy_adapter/examples/test_examples.py +4 -67
- mcp_proxy_adapter/examples/universal_client.py +154 -162
- mcp_proxy_adapter/main.py +51 -161
- mcp_proxy_adapter/utils/config_generator.py +90 -2
- mcp_proxy_adapter/version.py +4 -2
- mcp_proxy_adapter-6.2.0.dist-info/METADATA +687 -0
- mcp_proxy_adapter-6.2.0.dist-info/RECORD +122 -0
- mcp_proxy_adapter/examples/README.md +0 -257
- mcp_proxy_adapter/examples/README_EN.md +0 -258
- mcp_proxy_adapter/examples/SECURITY_TESTING.md +0 -455
- mcp_proxy_adapter/examples/__pycache__/security_configurations.cpython-312.pyc +0 -0
- mcp_proxy_adapter/examples/__pycache__/security_test_client.cpython-312.pyc +0 -0
- mcp_proxy_adapter/examples/basic_framework/configs/http_auth.json +0 -37
- mcp_proxy_adapter/examples/basic_framework/configs/http_simple.json +0 -23
- mcp_proxy_adapter/examples/basic_framework/configs/https_auth.json +0 -39
- mcp_proxy_adapter/examples/basic_framework/configs/https_simple.json +0 -25
- mcp_proxy_adapter/examples/basic_framework/configs/mtls_no_roles.json +0 -39
- mcp_proxy_adapter/examples/basic_framework/configs/mtls_with_roles.json +0 -45
- mcp_proxy_adapter/examples/basic_framework/roles.json +0 -21
- mcp_proxy_adapter/examples/cert_config.json +0 -9
- mcp_proxy_adapter/examples/certs/admin.crt +0 -32
- mcp_proxy_adapter/examples/certs/admin.key +0 -52
- mcp_proxy_adapter/examples/certs/admin_cert.pem +0 -21
- mcp_proxy_adapter/examples/certs/admin_key.pem +0 -28
- mcp_proxy_adapter/examples/certs/ca_cert.pem +0 -23
- mcp_proxy_adapter/examples/certs/ca_cert.srl +0 -1
- mcp_proxy_adapter/examples/certs/ca_key.pem +0 -28
- mcp_proxy_adapter/examples/certs/cert_config.json +0 -9
- mcp_proxy_adapter/examples/certs/client.crt +0 -32
- mcp_proxy_adapter/examples/certs/client.key +0 -52
- mcp_proxy_adapter/examples/certs/client_admin.crt +0 -32
- mcp_proxy_adapter/examples/certs/client_admin.key +0 -52
- mcp_proxy_adapter/examples/certs/client_user.crt +0 -32
- mcp_proxy_adapter/examples/certs/client_user.key +0 -52
- mcp_proxy_adapter/examples/certs/guest_cert.pem +0 -21
- mcp_proxy_adapter/examples/certs/guest_key.pem +0 -28
- mcp_proxy_adapter/examples/certs/mcp_proxy_adapter_ca_ca.crt +0 -23
- mcp_proxy_adapter/examples/certs/proxy_cert.pem +0 -21
- mcp_proxy_adapter/examples/certs/proxy_key.pem +0 -28
- mcp_proxy_adapter/examples/certs/readonly.crt +0 -32
- mcp_proxy_adapter/examples/certs/readonly.key +0 -52
- mcp_proxy_adapter/examples/certs/readonly_cert.pem +0 -21
- mcp_proxy_adapter/examples/certs/readonly_key.pem +0 -28
- mcp_proxy_adapter/examples/certs/server.crt +0 -32
- mcp_proxy_adapter/examples/certs/server.key +0 -52
- mcp_proxy_adapter/examples/certs/server_cert.pem +0 -32
- mcp_proxy_adapter/examples/certs/server_key.pem +0 -52
- mcp_proxy_adapter/examples/certs/test_ca_ca.crt +0 -20
- mcp_proxy_adapter/examples/certs/user.crt +0 -32
- mcp_proxy_adapter/examples/certs/user.key +0 -52
- mcp_proxy_adapter/examples/certs/user_cert.pem +0 -21
- mcp_proxy_adapter/examples/certs/user_key.pem +0 -28
- mcp_proxy_adapter/examples/client_configs/api_key_client.json +0 -13
- mcp_proxy_adapter/examples/client_configs/basic_auth_client.json +0 -13
- mcp_proxy_adapter/examples/client_configs/certificate_client.json +0 -22
- mcp_proxy_adapter/examples/client_configs/jwt_client.json +0 -15
- mcp_proxy_adapter/examples/client_configs/no_auth_client.json +0 -9
- mcp_proxy_adapter/examples/full_application/configs/http_auth.json +0 -37
- mcp_proxy_adapter/examples/full_application/configs/http_simple.json +0 -23
- mcp_proxy_adapter/examples/full_application/configs/https_auth.json +0 -39
- mcp_proxy_adapter/examples/full_application/configs/https_simple.json +0 -25
- mcp_proxy_adapter/examples/full_application/configs/mtls_no_roles.json +0 -39
- mcp_proxy_adapter/examples/full_application/configs/mtls_with_roles.json +0 -45
- mcp_proxy_adapter/examples/full_application/roles.json +0 -21
- mcp_proxy_adapter/examples/keys/ca_key.pem +0 -28
- mcp_proxy_adapter/examples/keys/mcp_proxy_adapter_ca_ca.key +0 -28
- mcp_proxy_adapter/examples/keys/test_ca_ca.key +0 -28
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter.log +0 -220
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter.log.1 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter.log.2 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter.log.3 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter.log.4 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter.log.5 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_access.log +0 -220
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_access.log.1 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_access.log.2 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_access.log.3 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_access.log.4 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_access.log.5 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_error.log +0 -2
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_error.log.1 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_error.log.2 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_error.log.3 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_error.log.4 +0 -1
- mcp_proxy_adapter/examples/logs/mcp_proxy_adapter_error.log.5 +0 -1
- mcp_proxy_adapter/examples/roles.json +0 -38
- mcp_proxy_adapter/examples/server_configs/config_basic_http.json +0 -204
- mcp_proxy_adapter/examples/server_configs/config_http_token.json +0 -238
- mcp_proxy_adapter/examples/server_configs/config_https.json +0 -215
- mcp_proxy_adapter/examples/server_configs/config_https_token.json +0 -231
- mcp_proxy_adapter/examples/server_configs/config_mtls.json +0 -215
- mcp_proxy_adapter/examples/server_configs/config_proxy_registration.json +0 -250
- mcp_proxy_adapter/examples/server_configs/config_simple.json +0 -46
- mcp_proxy_adapter/examples/server_configs/roles.json +0 -38
- mcp_proxy_adapter-6.1.0.dist-info/METADATA +0 -205
- mcp_proxy_adapter-6.1.0.dist-info/RECORD +0 -193
- {mcp_proxy_adapter-6.1.0.dist-info â mcp_proxy_adapter-6.2.0.dist-info}/WHEEL +0 -0
- {mcp_proxy_adapter-6.1.0.dist-info â mcp_proxy_adapter-6.2.0.dist-info}/entry_points.txt +0 -0
- {mcp_proxy_adapter-6.1.0.dist-info â mcp_proxy_adapter-6.2.0.dist-info}/licenses/LICENSE +0 -0
- {mcp_proxy_adapter-6.1.0.dist-info â mcp_proxy_adapter-6.2.0.dist-info}/top_level.txt +0 -0
@@ -1,39 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"server": {
|
3
|
-
"host": "0.0.0.0",
|
4
|
-
"port": 9443,
|
5
|
-
"debug": false,
|
6
|
-
"log_level": "INFO"
|
7
|
-
},
|
8
|
-
"ssl": {
|
9
|
-
"enabled": true,
|
10
|
-
"cert_file": "./certs/server.crt",
|
11
|
-
"key_file": "./certs/server.key",
|
12
|
-
"ca_cert": "./certs/ca.crt",
|
13
|
-
"verify_client": true,
|
14
|
-
"client_cert_required": true
|
15
|
-
},
|
16
|
-
"security": {
|
17
|
-
"enabled": true,
|
18
|
-
"auth": {
|
19
|
-
"enabled": true,
|
20
|
-
"methods": ["certificate"],
|
21
|
-
"certificate_auth": true
|
22
|
-
},
|
23
|
-
"rate_limit": {
|
24
|
-
"enabled": true,
|
25
|
-
"requests_per_minute": 60,
|
26
|
-
"requests_per_hour": 1000,
|
27
|
-
"burst_limit": 10
|
28
|
-
}
|
29
|
-
},
|
30
|
-
"logging": {
|
31
|
-
"level": "INFO",
|
32
|
-
"console_output": true,
|
33
|
-
"file_output": false
|
34
|
-
},
|
35
|
-
"commands": {
|
36
|
-
"auto_discovery": true,
|
37
|
-
"commands_directory": "./commands"
|
38
|
-
}
|
39
|
-
}
|
@@ -1,45 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"server": {
|
3
|
-
"host": "0.0.0.0",
|
4
|
-
"port": 9444,
|
5
|
-
"debug": false,
|
6
|
-
"log_level": "INFO"
|
7
|
-
},
|
8
|
-
"ssl": {
|
9
|
-
"enabled": true,
|
10
|
-
"cert_file": "./certs/server.crt",
|
11
|
-
"key_file": "./certs/server.key",
|
12
|
-
"ca_cert": "./certs/ca.crt",
|
13
|
-
"verify_client": true,
|
14
|
-
"client_cert_required": true
|
15
|
-
},
|
16
|
-
"security": {
|
17
|
-
"enabled": true,
|
18
|
-
"auth": {
|
19
|
-
"enabled": true,
|
20
|
-
"methods": ["certificate"],
|
21
|
-
"certificate_auth": true
|
22
|
-
},
|
23
|
-
"permissions": {
|
24
|
-
"enabled": true,
|
25
|
-
"roles_file": "./roles.json",
|
26
|
-
"default_role": "user",
|
27
|
-
"deny_by_default": true
|
28
|
-
},
|
29
|
-
"rate_limit": {
|
30
|
-
"enabled": true,
|
31
|
-
"requests_per_minute": 60,
|
32
|
-
"requests_per_hour": 1000,
|
33
|
-
"burst_limit": 10
|
34
|
-
}
|
35
|
-
},
|
36
|
-
"logging": {
|
37
|
-
"level": "INFO",
|
38
|
-
"console_output": true,
|
39
|
-
"file_output": false
|
40
|
-
},
|
41
|
-
"commands": {
|
42
|
-
"auto_discovery": true,
|
43
|
-
"commands_directory": "./commands"
|
44
|
-
}
|
45
|
-
}
|
@@ -1,21 +0,0 @@
|
|
1
|
-
{
|
2
|
-
"roles": {
|
3
|
-
"admin": {
|
4
|
-
"permissions": ["*"],
|
5
|
-
"description": "Administrator with full access"
|
6
|
-
},
|
7
|
-
"user": {
|
8
|
-
"permissions": ["read", "write"],
|
9
|
-
"description": "Regular user with read/write access"
|
10
|
-
},
|
11
|
-
"readonly": {
|
12
|
-
"permissions": ["read"],
|
13
|
-
"description": "Read-only user"
|
14
|
-
}
|
15
|
-
},
|
16
|
-
"user_roles": {
|
17
|
-
"admin": "admin",
|
18
|
-
"user": "user",
|
19
|
-
"readonly": "readonly"
|
20
|
-
}
|
21
|
-
}
|
@@ -1,28 +0,0 @@
|
|
1
|
-
-----BEGIN PRIVATE KEY-----
|
2
|
-
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDLlJMRJelqXw2E
|
3
|
-
AHQf8KnxSbiqY8Ee2q5G7xjgyamBae4HdOcCoLu4GA7mvSmBZDvj6NuVjdYKhKYH
|
4
|
-
TzfT1aXgwx9DZykDB9/ApbPYFO3rndu0c5xxST8iJqtLk5YJ+yM04rCv3miQhdSN
|
5
|
-
ZjNlInihC5uoOXrVyUgrgxKjOxhkudW1CIaIgaIlbJcftffUzEtcfYgSMc0J3EZX
|
6
|
-
E3fvX+9xqWMWfpcoftWMHZpcbV+1dke68s+i5F+98TEG2JxbmlkXgNq0xRdWpcnV
|
7
|
-
osU4sYxfKiKCWN5RUlumx9Xh1Mlw4m/C38ZgM3/DWS+0dAl5r4Q0lObBF0ej54U4
|
8
|
-
BVgMMOPJAgMBAAECggEAARkcj/ed4jKADqm39qIkMIZ+xgCCvqlcTkqk3jWIQgfx
|
9
|
-
vj2Nr3BxgsUyc2Eq06VYQ1rysERTFrxvbtOpD+3zlppG1WS9jmQg+1eJeE1omSBB
|
10
|
-
WqBTBDNqcUM3IlG5+fTOVE8yt8gh1UG7i0W1WkLM1sWKweYJeRS8XGu5EoNTltt9
|
11
|
-
SDWsx5fCjHMviYhEiHOkkP62ZjdsrH7qYvoR6AeWAUWODy253cWs/Fzj6OeGk7VO
|
12
|
-
qLw7i7geWpzmosevfd+fxVJW0UOKKMGngI8xPeJnpQJDL1Vrb+fUeJ0Hu9LXWR9d
|
13
|
-
6LKoP9gaKvXLA4NmkkX+B0+fBVWTR3rAuYRgxLJeAQKBgQD5N1Dw3ocayMM3RqOq
|
14
|
-
l6OkGxd+kssnSJN3yZiOBXHy7923mhAMP2KKTP9z3J/CzjWxfRbLEwKWn3Ft2IzM
|
15
|
-
WCbQKFTKRWGJeOg0I2k6DI68x7Wqw5kkc3NogxziWOO67UPgHNWsXFR9H9XzAB5+
|
16
|
-
RY7THOrHPIjQIeT2xEHeh/UOgQKBgQDRHz3t0iRt3Qj58RxknbXbTA82FijPF2Xc
|
17
|
-
ByzJQNZs2+nYlB+S4MB/XCzMfJdP+FrA8BZ5MOT90TBIqYmIo2mnY6/D9XeGaOti
|
18
|
-
H8xV45x0C2RlNXCX9Nn4P+j64fZdHVp2+rirNqvyTKN7fKI/Cbd3TMipJUGe77N4
|
19
|
-
5KmPMCFBSQKBgQDPEDrcJsgyZORuJO8Pana4fxoCPI020oJUYNe0CKooo0ugpQz4
|
20
|
-
YCHLrzYAWisTfKn4EmrBx8W6yDdCgU5a6lM1WI06knL7+c1UpKdlZ9Gg4H38qA+x
|
21
|
-
zYryJx30os50HXbr2olecEhyveTRxiOP3tNQbRJU/+Lcq4zFy0K/Vk8yAQKBgF7J
|
22
|
-
9H46BH0v9YOlgKMywV23qiVwAetsxaToM6q9kvQg8mxTJ8Shz19rXnsJ9mQvRKOz
|
23
|
-
r9wbB5DtIx+siUTAHYHcM611NEpegGMn2q0L0Lzg9Q7THEgkmjBmd6pQhiVKytin
|
24
|
-
aNFipKndhzTQF5LPSrPuv/27f3UVXZpsu1bGECzRAoGBAIBAJPYmlt8Mfhhvi9Yg
|
25
|
-
OXhlqPT7PjRBu+YaoineS5BNZ9V/23ib7iAOClCxdX+7doHI0VKzMyGJR2xa7Rzl
|
26
|
-
/oRInNWGU2UV+mCb6FoYohfHX0OFkelKJOZsyxWUrQ93IipwBTomoQnnrEExSzLh
|
27
|
-
r0FGAumOHw6zwjmbFSXRbPvs
|
28
|
-
-----END PRIVATE KEY-----
|
@@ -1,28 +0,0 @@
|
|
1
|
-
-----BEGIN PRIVATE KEY-----
|
2
|
-
MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQDWjQzvziU+/Y+S
|
3
|
-
wXDHXvcG5/ZV3C/R/9JhKZCAJ2g28Dg97Xjf9L8hh+Wzpkj3wDJL2Ho76nMegO5V
|
4
|
-
+m/HFVabSA/dn4bxOGqL5v7AXkQrdWRATYMRmGG6lS1NZC6pHRuD/Oun76Jv9aiN
|
5
|
-
QyYkLR3iFY8+pQTFhJX2MOO99gmPtAPmy3l3Zu1l2S87TB5Lv8MGuhSuPoNTWzND
|
6
|
-
hKP06oX6BCpqmqgkgo0Moy7SaVWAxviyZFjv/SbxUVU1kXqXJpUFoyCHX4ocQqNT
|
7
|
-
iGl+M2q0VZm9slhNuisoR7RfAx8eEBcPebOIlqzHBvq3hGgYeWWjnW34OrNwmhx1
|
8
|
-
kAPu3CRhAgMBAAECggEACi6y4NAGzSuEMdyDuWKUv2Yo4cBLy1/5yxS0P/DJgw9O
|
9
|
-
4VmGNWgh3g8wuUr4sZFp5wGaI4J9U4Lzohmlo8GBKmjMH/eJ6aQvd6j53tqvyjmN
|
10
|
-
uCOK8eh/0uFw6fhe4osixYEuafpMhPBtacQ4aNp0ovM6U33KG9musvrKWYygvYog
|
11
|
-
/FUsR/3iUx0FK2Bpa9O7BDNpau7QdBwXyoQAv/BY+lGysdtfwuJOiQdIxg2if15v
|
12
|
-
QUgryNV+x6v2mmVV/wiJ/H+3D1Els+BQG5DA3s0IjblEKYKryA6xM5WdSLUCADt4
|
13
|
-
gE5V4yJ652iHPGd9X0OZ3wKEz55HJecIW6O8UORQsQKBgQD3uYdVLLMReZxV2tfk
|
14
|
-
hoIJ2HEtiJjCmvjnL5fSbLGVTnkCi/S94X02UsKeHnrkzR/QCRzSBKdOkPZXinMZ
|
15
|
-
cDYv4z7rNolBMc2Itqq27g5Yxu0NpJ1303QOc3m97O37X8y6r+TYj8frRJrx7iG1
|
16
|
-
9N11j99ZoP9vH2LHcdDubcDL5QKBgQDdt9RYwyFo/vmi8I1KdYBScNXXujf6spPa
|
17
|
-
jgeZ3tP8Dkhuf2oABjflK7G4ySIAPl9BDBgc9paY4IcHkgw2YJd5pyYMaCrk4mPg
|
18
|
-
NnYCthGIxSzpeqfaFIEavE8/zxeT9jhTh7ScFCFqaUFtzzlzjTzc54MNm5fhc9oq
|
19
|
-
2I4rl9OGzQKBgQCbjSQtl6PZlUNVpdVq6gs9o2tt7BgAGs+wW3I574aS+nOB5eAI
|
20
|
-
W08EjXMnVnxUr3kKaK5wMfvcmaoVzhn4Hz3nVApuKBCHn34wGoOX2mOn20F/D57R
|
21
|
-
XzXA3UHUwLGu5rjngQtx8NbYJHwm7iC84MUuzOiynyXF4S9ljVJkZQZrAQKBgGOg
|
22
|
-
/DlajYPJt1FBeKvxutTQwTasBgWQAyJdWgsJdwY3QNLuTCpwoONIzBZ1wuKLJHBt
|
23
|
-
R9ST9b4CfoqnVPeGVeqjclR25ndtR2Xz8vlq6NwlhfXwWMaFGjJyVcYdf8HMDSlz
|
24
|
-
vHO6E/3mCDGYwX8sAyJcoaYWuZvkXC+Omev60GEtAoGAeryzTJzl8DHbDKk/3Zvv
|
25
|
-
Zo6CbiPh2iBdb6PoPL4cSg/NBDNuHrnWPr/N0RZ5D/cNfA8cv20I1tWBPr+X6r3F
|
26
|
-
2QQKSVt89JqfWJ1Xpj2Nxpnfa3QGFiQFCG5/366rZgASaQsuZNTAVgpbMEpwCjzI
|
27
|
-
t0rl84AcRvCvzc67//51jZg=
|
28
|
-
-----END PRIVATE KEY-----
|
@@ -1,28 +0,0 @@
|
|
1
|
-
-----BEGIN PRIVATE KEY-----
|
2
|
-
MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDLj3pcpg4owGNK
|
3
|
-
+8KT5FbXuGKYH0577+h9RE0KGC9JrJxCn8O1g62lRcpDCQ8IGwPn97wVGfbAG8ei
|
4
|
-
iQUfEPNfkaILv+f2j69tZIbhwuuUjfip8Xy4qcMCYTOnoB8ruwpwiKC8VCmWOOG+
|
5
|
-
ma59isHAc0WuNhM+UXmkvEh1CnW3IlmRSilkLAdAI0Z+LkJH6Olb8loFsCcIb3kS
|
6
|
-
+FXrviS10eUXxntwNmyHV29svqByS+l5vxloatsMpRZWKZVRr9avYEZhtV37Ae/k
|
7
|
-
JD5dqGGa4+5iJJiN9FBmxr7FRJ1/w35fFzR9TP2UyBNhMrEGTii2abITzrSS+nid
|
8
|
-
jSBj01kxAgMBAAECggEAUGEvAZ+mjqvtaWIBgvGS4yrRb91I2gKxTKmoPBixr4dj
|
9
|
-
yqEYoDfHXTAyPoc4sswsHjCCSdjPSSuPCJzPc2V3nKC+mqIkQAWb0Xf1FPepm6b1
|
10
|
-
7nFHfQm30dw9D+9X76YzaJ1izwrywvliFqfLsZIVkN9TwAdlUOHORWD9wY2oTvAi
|
11
|
-
JS7PvTCWuqv4JkAIPZz2UIMBSv7ZajFr4Ysa2Sp9MM2kbIA7uE66HoIF7ic7eD6P
|
12
|
-
a6vaFQ23oDs/ZkL73L4goD0283E0HZ/RIBXgFTVvS4bOfbU+ShgRuznX9MmTJIXP
|
13
|
-
kgIbgOa3gJhvkKvmLsame9QP7nXzLQiystFqa7B6KwKBgQD1u5ztEkt2CQ1EFjMG
|
14
|
-
9A6kCMPsJHn/HFVbQcs2ZEPiZ7ioTamWZDziP0ykzrymNqkBqOcqEpAj6OUKbFpA
|
15
|
-
8Q1sxVkZZrJmlOMT73Hzv0fyS2sRVH7ee4uFjVd67lVoWjKFOu/CAooz82IkI6r0
|
16
|
-
qTGaPbCsz0w4U5ka+ZQWw1RQpwKBgQDUEMi7di8YAZYEwiYNDzee+E6JcJ1z/URU
|
17
|
-
29DO+5YIhVHLft6vLWqe5law/oQlKULN6k3FO/zd977DoS0c9ALgKgDuhf46NXSk
|
18
|
-
ukboc2Yplt1LtFOlE7JeYuiHacRHwh+j5ToVlcUVZywXmadDpnNLmWqmivqw9th/
|
19
|
-
V/0AiOiqZwKBgQC5ORR9IfgdXY9RTgZibF4IyM6dVZVbdQjlw38gXY1Jv/LRcdCt
|
20
|
-
mprF0v67j1VlV/gmVyD/doSNfMQAClIxd0EuRsb1PZKlff54DVlwaDMb8DshEfab
|
21
|
-
TraJEVPqRnG8OZixEg6cx3tS01abdQMsbcgEwhFFAPAr2N+kFJHKYqtQKwKBgQCs
|
22
|
-
U5dK/pb2YxONeleBdUQ1ooHvndvVTZIhgx8Dk94vvmbhfo9muvlRdswruCeaKxVm
|
23
|
-
T2gzRrQNjC0wu+D1DjToBDoNmkUk+Bt5YQYODviOA1KBGmB+XKstmCJtJ72gslcT
|
24
|
-
0EqLD9G/ur9RzkLl7nTykhDglT9yXqU/lji6HoczMQKBgAYhRQeD9pjWPw1+I3Em
|
25
|
-
ZwKrAWmOsQKjV4oURU2U/QHKuyzH/H5XkKXpJgpCnYU6XRmIGWvoH/SyLvFv4fhC
|
26
|
-
SN8NEoT5JuuMrrJP2m0lWen52ATuuBt/PD+9CSkm9lD9zTG0V9V/he0wYXYv5yYA
|
27
|
-
52PiP265yj3oroWvGzUwJxxR
|
28
|
-
-----END PRIVATE KEY-----
|
@@ -1,220 +0,0 @@
|
|
1
|
-
2025-08-30 05:45:50 - mcp_proxy_adapter - WARNING - â ī¸ Proxy unregistration failed or was disabled
|
2
|
-
2025-08-30 05:46:14 - mcp_proxy_adapter - INFO - đ§ MCP Proxy Adapter - Proxy Registration Example
|
3
|
-
2025-08-30 05:46:14 - mcp_proxy_adapter - INFO - ============================================================
|
4
|
-
2025-08-30 05:46:14 - mcp_proxy_adapter - ERROR - â Server is not running on localhost:8002
|
5
|
-
2025-08-30 05:46:14 - mcp_proxy_adapter - INFO - đĄ Please start the server first:
|
6
|
-
2025-08-30 05:46:14 - mcp_proxy_adapter - INFO - cd mcp_proxy_adapter/examples
|
7
|
-
2025-08-30 05:46:14 - mcp_proxy_adapter - INFO - python -m mcp_proxy_adapter.main --config server_configs/config_proxy_registration.json
|
8
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - đ§ MCP Proxy Adapter - Proxy Registration Example
|
9
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - ============================================================
|
10
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
Server is running on localhost:8002
|
11
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - đ Starting proxy registration example...
|
12
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - đ Starting proxy registration example
|
13
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO -
|
14
|
-
đ Testing: Admin Token
|
15
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
16
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Auth Token: test-token-123
|
17
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
18
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
19
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
20
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
21
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing discovery operation
|
22
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
23
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO -
|
24
|
-
đ Testing: User Token
|
25
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
26
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Auth Token: user-token-456
|
27
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
28
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
29
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
30
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
31
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing discovery operation
|
32
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
33
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO -
|
34
|
-
đ Testing: Readonly Token
|
35
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
36
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Auth Token: readonly-token-123
|
37
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
38
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
39
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
40
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
41
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing discovery operation
|
42
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
43
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO -
|
44
|
-
đ Testing: No Authentication
|
45
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
46
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
47
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
48
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Response status: 200
|
49
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO -
|
50
|
-
================================================================================
|
51
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - đ EXAMPLE RESULTS
|
52
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - ================================================================================
|
53
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Registration
|
54
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
55
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Registration
|
56
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
57
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Discovery
|
58
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
59
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS User Token - Registration
|
60
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
61
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS User Token - Registration
|
62
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
63
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS User Token - Discovery
|
64
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
65
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Registration
|
66
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
67
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Registration
|
68
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
69
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Discovery
|
70
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
71
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS No Auth - Registration
|
72
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
73
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - â
PASS No Auth - Registration
|
74
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
75
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO -
|
76
|
-
================================================================================
|
77
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - đ SUMMARY: 11 passed, 0 failed
|
78
|
-
2025-08-30 05:46:49 - mcp_proxy_adapter - INFO - ================================================================================
|
79
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - đ§ MCP Proxy Adapter - Proxy Registration Example
|
80
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - ============================================================
|
81
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
Server is running on localhost:8002
|
82
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - đ Starting proxy registration example...
|
83
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - đ Starting proxy registration example
|
84
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO -
|
85
|
-
đ Testing: Admin Token
|
86
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
87
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Auth Token: test-token-123
|
88
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
89
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
90
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
91
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
92
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing discovery operation
|
93
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
94
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO -
|
95
|
-
đ Testing: User Token
|
96
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
97
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Auth Token: user-token-456
|
98
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
99
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
100
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
101
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
102
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing discovery operation
|
103
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
104
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO -
|
105
|
-
đ Testing: Readonly Token
|
106
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
107
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Auth Token: readonly-token-123
|
108
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
109
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
110
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
111
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
112
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing discovery operation
|
113
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
114
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO -
|
115
|
-
đ Testing: No Authentication
|
116
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
117
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
118
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
119
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Response status: 200
|
120
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO -
|
121
|
-
================================================================================
|
122
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - đ EXAMPLE RESULTS
|
123
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - ================================================================================
|
124
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Registration
|
125
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
126
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Registration
|
127
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
128
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Discovery
|
129
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
130
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS User Token - Registration
|
131
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
132
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS User Token - Registration
|
133
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
134
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS User Token - Discovery
|
135
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
136
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Registration
|
137
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
138
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Registration
|
139
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
140
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Discovery
|
141
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
142
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS No Auth - Registration
|
143
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
144
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - â
PASS No Auth - Registration
|
145
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
146
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO -
|
147
|
-
================================================================================
|
148
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - đ SUMMARY: 11 passed, 0 failed
|
149
|
-
2025-08-30 05:47:35 - mcp_proxy_adapter - INFO - ================================================================================
|
150
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - đ§ MCP Proxy Adapter - Proxy Registration Example
|
151
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - ============================================================
|
152
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
Server is running on localhost:8002
|
153
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - đ Starting proxy registration example...
|
154
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - đ Starting proxy registration example
|
155
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO -
|
156
|
-
đ Testing: Admin Token
|
157
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
158
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Auth Token: test-token-123
|
159
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
160
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
161
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
162
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
163
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing discovery operation
|
164
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
165
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO -
|
166
|
-
đ Testing: User Token
|
167
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
168
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Auth Token: user-token-456
|
169
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
170
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
171
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
172
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
173
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing discovery operation
|
174
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
175
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO -
|
176
|
-
đ Testing: Readonly Token
|
177
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Server URL: http://localhost:8002
|
178
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Auth Token: readonly-token-123
|
179
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
180
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
181
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
182
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
183
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing discovery operation
|
184
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
185
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO -
|
186
|
-
đ Testing: No Authentication
|
187
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-1
|
188
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
189
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Testing registration for server: example-server-2
|
190
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Response status: 200
|
191
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO -
|
192
|
-
================================================================================
|
193
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - đ EXAMPLE RESULTS
|
194
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - ================================================================================
|
195
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Registration
|
196
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
197
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Registration
|
198
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
199
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS Admin Token - Discovery
|
200
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
201
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS User Token - Registration
|
202
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
203
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS User Token - Registration
|
204
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
205
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS User Token - Discovery
|
206
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
207
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Registration
|
208
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
209
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Registration
|
210
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
211
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS Readonly Token - Discovery
|
212
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: discover requires ['discover']
|
213
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS No Auth - Registration
|
214
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
215
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - â
PASS No Auth - Registration
|
216
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - Message: Permission denied: register requires ['register']
|
217
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO -
|
218
|
-
================================================================================
|
219
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - đ SUMMARY: 11 passed, 0 failed
|
220
|
-
2025-08-30 05:48:57 - mcp_proxy_adapter - INFO - ================================================================================
|
@@ -1 +0,0 @@
|
|
1
|
-
2025-08-30 05:45:50 - mcp_proxy_adapter - ERROR - Proxy registration manager not initialized
|
@@ -1 +0,0 @@
|
|
1
|
-
2025-08-30 05:45:50 - mcp_proxy_adapter - INFO - Application shutting down
|
@@ -1 +0,0 @@
|
|
1
|
-
2025-08-30 05:43:57 - mcp_proxy_adapter - INFO - âšī¸ Proxy registration is disabled or failed
|
@@ -1 +0,0 @@
|
|
1
|
-
2025-08-30 05:43:57 - mcp_proxy_adapter - ERROR - Proxy registration manager not initialized
|
@@ -1 +0,0 @@
|
|
1
|
-
2025-08-30 05:43:57 - mcp_proxy_adapter - INFO - System initialization result: {'config_reloaded': True, 'builtin_commands': 12, 'custom_commands': 0, 'loaded_commands': 0, 'remote_commands': 0, 'total_commands': 12, 'proxy_registration_success': False}
|