-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into feature/add-mcp-google-search
- Loading branch information
Showing
19 changed files
with
517 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
export const VERSION = "0.6.2"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
FROM node:22.12-alpine as builder | ||
|
||
COPY src/redis /app | ||
|
||
WORKDIR /app | ||
|
||
RUN --mount=type=cache,target=/root/.npm npm install | ||
|
||
RUN npm run build | ||
|
||
FROM node:22-alpine AS release | ||
|
||
COPY --from=builder /app/build /app/build | ||
COPY --from=builder /app/package.json /app/package.json | ||
COPY --from=builder /app/package-lock.json /app/package-lock.json | ||
|
||
ENV NODE_ENV=production | ||
|
||
WORKDIR /app | ||
|
||
RUN npm ci --ignore-scripts --omit-dev | ||
|
||
ENTRYPOINT ["node", "build/index.js"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
# Redis | ||
|
||
A Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools. | ||
|
||
## Components | ||
|
||
### Tools | ||
|
||
- **set** | ||
- Set a Redis key-value pair with optional expiration | ||
- Input: | ||
- `key` (string): Redis key | ||
- `value` (string): Value to store | ||
- `expireSeconds` (number, optional): Expiration time in seconds | ||
|
||
- **get** | ||
- Get value by key from Redis | ||
- Input: `key` (string): Redis key to retrieve | ||
|
||
- **delete** | ||
- Delete one or more keys from Redis | ||
- Input: `key` (string | string[]): Key or array of keys to delete | ||
|
||
- **list** | ||
- List Redis keys matching a pattern | ||
- Input: `pattern` (string, optional): Pattern to match keys (default: *) | ||
|
||
## Usage with Claude Desktop | ||
|
||
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your `claude_desktop_config.json`: | ||
|
||
### Docker | ||
|
||
* when running docker on macos, use host.docker.internal if the server is running on the host network (eg localhost) | ||
* Redis URL can be specified as an argument, defaults to "redis://localhost:6379" | ||
|
||
```json | ||
{ | ||
"mcpServers": { | ||
"redis": { | ||
"command": "docker", | ||
"args": [ | ||
"run", | ||
"-i", | ||
"--rm", | ||
"mcp/redis", | ||
"redis://host.docker.internal:6379"] | ||
} | ||
} | ||
} | ||
``` | ||
|
||
### NPX | ||
|
||
```json | ||
{ | ||
"mcpServers": { | ||
"redis": { | ||
"command": "npx", | ||
"args": [ | ||
"-y", | ||
"@modelcontextprotocol/server-redis", | ||
"redis://localhost:6379" | ||
] | ||
} | ||
} | ||
} | ||
``` | ||
|
||
## Building | ||
|
||
Docker: | ||
|
||
```sh | ||
docker build -t mcp/redis -f src/redis/Dockerfile . | ||
``` | ||
|
||
## License | ||
|
||
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository. |
Oops, something went wrong.