Update README.md and package version tag
This commit is contained in:
parent
06aa6ecca1
commit
e550b5078b
50
README.md
50
README.md
|
@ -1,5 +1,5 @@
|
||||||
# MCP-Discord
|
# MCP-Discord
|
||||||
[](https://smithery.ai/server/@barryyip0625/mcp-discord) 
|
[](https://smithery.ai/server/@barryyip0625/mcp-discord)  [](https://hub.docker.com/r/barryy625/mcp-discord)
|
||||||
|
|
||||||
A Discord MCP (Model Context Protocol) server that enables AI assistants to interact with the Discord platform.
|
A Discord MCP (Model Context Protocol) server that enables AI assistants to interact with the Discord platform.
|
||||||
|
|
||||||
|
@ -87,6 +87,27 @@ For more details, you can check out the [NPM Package](https://www.npmjs.com/pack
|
||||||
|
|
||||||
To install mcp-discord automatically via [Smithery](https://smithery.ai/server/@barryyip0625/mcp-discord)
|
To install mcp-discord automatically via [Smithery](https://smithery.ai/server/@barryyip0625/mcp-discord)
|
||||||
|
|
||||||
|
### Installing via Docker
|
||||||
|
|
||||||
|
You can run mcp-discord using Docker. The Docker images are automatically built and published to Docker Hub.
|
||||||
|
|
||||||
|
**Docker Hub Repository**: [barryy625/mcp-discord](https://hub.docker.com/r/barryy625/mcp-discord)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Pull the latest image
|
||||||
|
docker pull barryy625/mcp-discord:latest
|
||||||
|
|
||||||
|
# Run with environment variable
|
||||||
|
docker run -e DISCORD_TOKEN=your_discord_bot_token -p 8080:8080 barryy625/mcp-discord:latest
|
||||||
|
|
||||||
|
# Or run with command line config
|
||||||
|
docker run -p 8080:8080 barryy625/mcp-discord:latest --config "your_discord_bot_token"
|
||||||
|
```
|
||||||
|
|
||||||
|
**Available Tags:**
|
||||||
|
- `latest` - Latest stable version from main branch
|
||||||
|
- `v1.3.3`, etc. - Specific version releases
|
||||||
|
|
||||||
### Manual Installation
|
### Manual Installation
|
||||||
```bash
|
```bash
|
||||||
# Clone the repository
|
# Clone the repository
|
||||||
|
@ -135,6 +156,33 @@ node build/index.js --transport http --port 3000 --config "your_discord_bot_toke
|
||||||
|
|
||||||
## Usage with Claude/Cursor
|
## Usage with Claude/Cursor
|
||||||
|
|
||||||
|
### Docker
|
||||||
|
|
||||||
|
You can use Docker containers with both Claude and Cursor:
|
||||||
|
|
||||||
|
```json
|
||||||
|
{
|
||||||
|
"mcpServers": {
|
||||||
|
"discord": {
|
||||||
|
"command": "docker",
|
||||||
|
"args": [
|
||||||
|
"run",
|
||||||
|
"--rm",
|
||||||
|
"-e",
|
||||||
|
"DISCORD_TOKEN=your_discord_bot_token",
|
||||||
|
"-p",
|
||||||
|
"8080:8080",
|
||||||
|
"barryy625/mcp-discord:latest",
|
||||||
|
"--transport",
|
||||||
|
"http",
|
||||||
|
"--port",
|
||||||
|
"8080"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
### Claude
|
### Claude
|
||||||
|
|
||||||
1. Using stdio transport:
|
1. Using stdio transport:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "mcp-discord",
|
"name": "mcp-discord",
|
||||||
"version": "1.3.3",
|
"version": "1.3.4",
|
||||||
"description": "Model Context Protocol (MCP) server for Discord integration, allowing Claude and other MCP clients to interact with Discord",
|
"description": "Model Context Protocol (MCP) server for Discord integration, allowing Claude and other MCP clients to interact with Discord",
|
||||||
"main": "build/index.js",
|
"main": "build/index.js",
|
||||||
"bin": {
|
"bin": {
|
||||||
|
|
Loading…
Reference in New Issue