Confidential guide on numerology and astrology, based of GG33 Public information

mcp-access-point
MCP Access Point is a lightweight gateway tool designed to bridge traditional HTTP services with MCP (Model Context Protocol) clients. It enables seamless interaction between MCP clients and existing HTTP services without requiring any modifications to the server-side interface code.
3 years
Works with Finder
1
Github Watches
1
Github Forks
5
Github Stars
MCP Access Point
MCP Access Point is a lightweight gateway tool designed to bridge traditional HTTP services with MCP (Model Context Protocol) clients. It enables seamless interaction between MCP clients and existing HTTP services without requiring any modifications to the server-side interface code.
Http to SSE by open
This mode allows clients like Cursor Desktop to communicate to a remote server over SSE even though it is not supported natively.
graph LR
A["Cursor Desktop"] <--> |sse| B["MCP Access Point"]
B <--> |http| C["Existing Http Server"]
style A fill:#ffe6f9,stroke:#333,color:black,stroke-width:2px
style B fill:#e6e6ff,stroke:#333,color:black,stroke-width:2px
style C fill:#e6ffe6,stroke:#333,color:black,stroke-width:2px
Quick Start
Installation Method
# Install from source
git clone https://github.com/sxhxliang/mcp-access-point.git
cd mcp-access-point
# Pass the openapi.json file path, mcp port number, and upstream service address
cargo run -- -f openapi_for_demo.json -p 8080 -u localhost:8090
# You can also use the openapi.json of a remote server, such as petstore.swagger.io for demonstration purposes.
cargo run -- -f https://petstore.swagger.io/v2/swagger.json -p 8080 -u localhost:8090
# Use inspector for debugging. First, start the service.
npx @modelcontextprotocol/inspector@0.8.1 node build/index.js
# Access http://127.0.0.1:6274/
# Select "see," fill in 0.0.0.0:8080/sse, and click "connect" to link to the service.
Breakdown of Arguments:
-
-f openapi_for_demo.json
-
-f
(or--file
) specifies the path to the OpenAPI specification file (openapi_for_demo.json
). - This file defines the API that the MCP (Model Context Protocol) access point will use.
-
-
-p 8080
-
-p
(or--port
) sets the port number (8080
) on which the MCP access point will listen for incoming requests.
-
-
-u localhost:8090
-
-u
(or--upstream
) defines the upstream service address (localhost:8090
). - The MCP access point will forward requests to this address after processing them.
-
Key Characteristics:
- Protocol Conversion: Translates between HTTP and MCP protocols bidirectionally
- Zero Modification: Works with existing HTTP services as-is
- Client Enablement: Allows MCP clients to consume standard HTTP services
- Lightweight Proxy: Minimal overhead with clean protocol translation
Running with Docker
Build Docker Image (Optional, if you want to build locally)
# Clone the repository
git clone https://github.com/sxhxliang/mcp-access-point.git
cd mcp-access-point
# Build Docker image
docker build -t kames2025/mcp-access-point:latest .
Pull and Run Docker Container
# Using environment variables for configuration (upstream service running on host)
# Note: Replace /path/to/your/openapi.json with the actual path to your local OpenAPI file
# Note: The upstream address uses host.docker.internal to point to the host machine. If this doesn't work, try the host's LAN IP address.
docker run -d --name mcp-access-point --rm \
-p 8080:8080 \
-e port=8080 \
-e upstream=host.docker.internal:8090 \
-e openapi_json=/app/config/openapi.json \
-v /path/to/your/openapi.json:/app/config/openapi.json \
kames2025/mcp-access-point:latest
# Or specify the openapi_json environment variable directly
docker run -d --name mcp-access-point --rm \
-p 8080:8080 \
-e port=8080 \
-e upstream=host.docker.internal:8090 \
-e openapi_json=/app/config/openapi.json \
-v /path/to/your/openapi.json:/app/config/openapi.json \
kames2025/mcp-access-point:latest
Environment Variables
-
port
: MCP access point listening port, default is 8080 -
upstream
: Upstream service address, default is localhost:8090 -
openapi_json
: Path to the OpenAPI specification file, default is /app/config/openapi.json
The solution is particularly valuable for:
- Gradually migrating HTTP services to MCP architecture
- Enabling MCP-based systems to leverage existing HTTP infrastructure
- Building hybrid systems that need to support both protocols
Example use case: An AI service with MCP-native clients needs to integrate with legacy HTTP-based microservices. The MCP Access Point sits between them, handling protocol translation transparently.
Would you like me to develop any particular aspect of this description further, such as technical architecture or specific protocol conversion details?
相关推荐
Converts Figma frames into front-end code for various mobile frameworks.
Advanced software engineer GPT that excels through nailing the basics.
I find academic articles and books for research and literature reviews.
Embark on a thrilling diplomatic quest across a galaxy on the brink of war. Navigate complex politics and alien cultures to forge peace and avert catastrophe in this immersive interstellar adventure.
Delivers concise Python code and interprets non-English comments
Micropython I2C-based manipulation of the MCP series GPIO expander, derived from Adafruit_MCP230xx
Discover the most comprehensive and up-to-date collection of MCP servers in the market. This repository serves as a centralized hub, offering an extensive catalog of open-source and proprietary MCP servers, complete with features, documentation links, and contributors.
AWS MCP Servers — specialized MCP servers that bring AWS best practices directly to your development workflow
The all-in-one Desktop & Docker AI application with built-in RAG, AI agents, No-code agent builder, MCP compatibility, and more.
💬 MaxKB is an open-source AI assistant for enterprise. It seamlessly integrates RAG pipelines, supports robust workflows, and provides MCP tool-use capabilities.
MCP server to provide Figma layout information to AI coding agents like Cursor
Reviews

user_VAEGmOMS
MCP-Access-Point by sxhxliang is a fantastic application that exceeds my expectations. The seamless integration and user-friendly interface make accessing and managing data incredibly efficient. As an enthusiastic user, I highly appreciate the attention to detail and reliability offered by this tool. Highly recommend checking it out!