mcp-proxy-oauth-dcr 0.1.0__tar.gz → 0.1.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.
- {mcp_proxy_oauth_dcr-0.1.0/src/mcp_proxy_oauth_dcr.egg-info → mcp_proxy_oauth_dcr-0.1.1}/PKG-INFO +3 -9
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/README.md +2 -8
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/pyproject.toml +1 -1
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1/src/mcp_proxy_oauth_dcr.egg-info}/PKG-INFO +3 -9
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/ARCHITECTURE.md +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/DEVELOPMENT.md +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/LICENSE +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/MANIFEST.in +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/PROXY_USAGE.md +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/examples/.env.example +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/examples/CLI_USAGE.md +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/examples/authenticated_client_example.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/examples/config.json.example +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/examples/run_proxy.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/setup.cfg +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/__init__.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/__main__.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/auth/__init__.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/auth/manager.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/config/__init__.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/config/manager.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/exceptions.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/http/__init__.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/http/authenticated_client.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/http/client.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/logging_config.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/models.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/protocols.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/proxy.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/stdio/__init__.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/stdio/interface.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/stdio/jsonrpc.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/translator/__init__.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/translator/translator.py +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy_oauth_dcr.egg-info/SOURCES.txt +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy_oauth_dcr.egg-info/dependency_links.txt +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy_oauth_dcr.egg-info/entry_points.txt +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy_oauth_dcr.egg-info/requires.txt +0 -0
- {mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy_oauth_dcr.egg-info/top_level.txt +0 -0
{mcp_proxy_oauth_dcr-0.1.0/src/mcp_proxy_oauth_dcr.egg-info → mcp_proxy_oauth_dcr-0.1.1}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-proxy-oauth-dcr
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: MCP Proxy with OAuth Dynamic Client Registration support
|
|
5
5
|
Author-email: MCP Proxy Team <team@mcpproxy.dev>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -46,6 +46,8 @@ Dynamic: license-file
|
|
|
46
46
|
|
|
47
47
|
# MCP Proxy with OAuth DCR Support
|
|
48
48
|
|
|
49
|
+
Note that this was entirely AI generated and made to handle a specific use-case where closed-source clients do not support FastMCP DCR O-Auth properly. It has been tested with one specific MCP server and works within Kiro, however your milage may vary. As this is AI generated do not query me on its workings, this is a purely temporary tool that burned an ocean to exist.
|
|
50
|
+
|
|
49
51
|
A protocol translation service that enables Kiro to connect to HTTP streamable MCP servers through a stdio interface while providing OAuth Dynamic Client Registration authentication.
|
|
50
52
|
|
|
51
53
|
## Overview
|
|
@@ -114,14 +116,6 @@ mcp-proxy --config config.json
|
|
|
114
116
|
|
|
115
117
|
## Development
|
|
116
118
|
|
|
117
|
-
### Setup
|
|
118
|
-
|
|
119
|
-
```bash
|
|
120
|
-
git clone https://github.com/mcpproxy/mcp-proxy-oauth-dcr.git
|
|
121
|
-
cd mcp-proxy-oauth-dcr
|
|
122
|
-
pip install -e ".[dev]"
|
|
123
|
-
```
|
|
124
|
-
|
|
125
119
|
### Testing
|
|
126
120
|
|
|
127
121
|
```bash
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# MCP Proxy with OAuth DCR Support
|
|
2
2
|
|
|
3
|
+
Note that this was entirely AI generated and made to handle a specific use-case where closed-source clients do not support FastMCP DCR O-Auth properly. It has been tested with one specific MCP server and works within Kiro, however your milage may vary. As this is AI generated do not query me on its workings, this is a purely temporary tool that burned an ocean to exist.
|
|
4
|
+
|
|
3
5
|
A protocol translation service that enables Kiro to connect to HTTP streamable MCP servers through a stdio interface while providing OAuth Dynamic Client Registration authentication.
|
|
4
6
|
|
|
5
7
|
## Overview
|
|
@@ -68,14 +70,6 @@ mcp-proxy --config config.json
|
|
|
68
70
|
|
|
69
71
|
## Development
|
|
70
72
|
|
|
71
|
-
### Setup
|
|
72
|
-
|
|
73
|
-
```bash
|
|
74
|
-
git clone https://github.com/mcpproxy/mcp-proxy-oauth-dcr.git
|
|
75
|
-
cd mcp-proxy-oauth-dcr
|
|
76
|
-
pip install -e ".[dev]"
|
|
77
|
-
```
|
|
78
|
-
|
|
79
73
|
### Testing
|
|
80
74
|
|
|
81
75
|
```bash
|
{mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1/src/mcp_proxy_oauth_dcr.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mcp-proxy-oauth-dcr
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: MCP Proxy with OAuth Dynamic Client Registration support
|
|
5
5
|
Author-email: MCP Proxy Team <team@mcpproxy.dev>
|
|
6
6
|
License-Expression: MIT
|
|
@@ -46,6 +46,8 @@ Dynamic: license-file
|
|
|
46
46
|
|
|
47
47
|
# MCP Proxy with OAuth DCR Support
|
|
48
48
|
|
|
49
|
+
Note that this was entirely AI generated and made to handle a specific use-case where closed-source clients do not support FastMCP DCR O-Auth properly. It has been tested with one specific MCP server and works within Kiro, however your milage may vary. As this is AI generated do not query me on its workings, this is a purely temporary tool that burned an ocean to exist.
|
|
50
|
+
|
|
49
51
|
A protocol translation service that enables Kiro to connect to HTTP streamable MCP servers through a stdio interface while providing OAuth Dynamic Client Registration authentication.
|
|
50
52
|
|
|
51
53
|
## Overview
|
|
@@ -114,14 +116,6 @@ mcp-proxy --config config.json
|
|
|
114
116
|
|
|
115
117
|
## Development
|
|
116
118
|
|
|
117
|
-
### Setup
|
|
118
|
-
|
|
119
|
-
```bash
|
|
120
|
-
git clone https://github.com/mcpproxy/mcp-proxy-oauth-dcr.git
|
|
121
|
-
cd mcp-proxy-oauth-dcr
|
|
122
|
-
pip install -e ".[dev]"
|
|
123
|
-
```
|
|
124
|
-
|
|
125
119
|
### Testing
|
|
126
120
|
|
|
127
121
|
```bash
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/examples/authenticated_client_example.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/http/authenticated_client.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/translator/__init__.py
RENAMED
|
File without changes
|
{mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy/translator/translator.py
RENAMED
|
File without changes
|
{mcp_proxy_oauth_dcr-0.1.0 → mcp_proxy_oauth_dcr-0.1.1}/src/mcp_proxy_oauth_dcr.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|