Skip to content

Commit 81c6cdb

Browse files
committed
Update README
1 parent 05fd70a commit 81c6cdb

File tree

1 file changed

+5
-48
lines changed

1 file changed

+5
-48
lines changed

README.md

+5-48
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,14 @@
22

33
As long as Claude Desktop does not support connecting to remote servers, you can use this script to run a bridge from stdio to HTTP SSE (Server-Sent Events) endpoint.
44

5-
## Installation
5+
## Install claude_gateway
66

77
You can install the package globally or use it directly with npx:
88

99
```shell
1010
# Global installation
1111
npm install -g mcp-server-and-gw
1212

13-
# Or install as a project dependency
14-
npm install mcp-server-and-gw
15-
```
16-
17-
## Usage
18-
19-
You can use the gateway in several ways:
20-
21-
```shell
2213
# Using npx (no installation required)
2314
npx claude_gateway http://localhost:9999
2415

@@ -29,6 +20,8 @@ claude_gateway http://localhost:9999
2920
MCP_HOST=localhost MCP_PORT=9999 npx claude_gateway
3021
```
3122

23+
## Add Configuration into Claude
24+
3225
> The bridge script is node javasscript, but your server code can be whatever you use.
3326
3427
A [Model Context Protocol](https://www.anthropic.com/news/model-context-protocol) gateway [src/claude_gateway.ts](src/claude_gateway.ts) from [stdio](https://spec.modelcontextprotocol.io/specification/basic/transports/#stdio) to [HTTP SSE](https://spec.modelcontextprotocol.io/specification/basic/transports/#http-with-sse) transport.
@@ -44,9 +37,9 @@ cp build/claude_gateway.js /tmp
4437
echo '{
4538
"mcpServers": {
4639
"Claude Gateway Example": {
47-
"command": "node",
40+
"command": "npx",
4841
"args": [
49-
"/tmp/claude_gateway.js"
42+
"claude_gateway", "http://localhost:9999/"
5043
]
5144
}
5245
}
@@ -130,39 +123,3 @@ Connected: { resources: {}, tools: {}, templates: {} }
130123
isError: false
131124
}
132125
```
133-
134-
## Publishing New Versions
135-
136-
This package uses GitHub Actions to automatically publish to NPM when a new release is created.
137-
138-
### For Maintainers
139-
140-
To release a new version:
141-
142-
1. Make your changes and commit them
143-
2. Run one of the release commands:
144-
```shell
145-
# For patch releases (bug fixes)
146-
npm run release:patch
147-
148-
# For minor releases (backward compatible features)
149-
npm run release:minor
150-
151-
# For major releases (breaking changes)
152-
npm run release:major
153-
```
154-
3. This will:
155-
- Update the version in package.json
156-
- Create a git tag for the version
157-
- Push the changes and tags to GitHub
158-
159-
4. Go to GitHub and create a new release from the tag
160-
- This will trigger the GitHub Action to publish to NPM
161-
162-
### NPM Token Setup
163-
164-
To set up automatic publishing:
165-
166-
1. Create an NPM token with publish permissions
167-
2. Add the token to your GitHub repository secrets with the name `NPM_TOKEN`
168-
3. The publishing workflow will use this token to authenticate with NPM

0 commit comments

Comments
 (0)