Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 21 additions & 0 deletions server/mcp_server_las/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,27 @@ LAS中,数据集中关于 RAY 相关的内容有哪些

### UVX

```json
{
"mcpServers": {
"las-dataset-mcp": {
"command": "uvx",
"args": [
"--from",
"mcp-server-las>=0.1.1",
"mcp-server-las"
],
"env": {
"VOLCENGINE_ACCESS_KEY": "your-access-key-id",
"VOLCENGINE_SECRET_KEY": "your-access-key-secret",
"LAS_DATASET_ID": "your-dataset-id"
}
}
}
}
```


```json
{
"mcpServers": {
Expand Down
2 changes: 1 addition & 1 deletion server/mcp_server_las/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-server-las"
version = "0.1.0"
version = "0.1.1"
description = "MCP server for LAS search_logs API"
readme = "README.md"
requires-python = ">=3.12"
Expand Down
24 changes: 24 additions & 0 deletions server/mcp_server_rds_mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,30 @@

## 部署
火山引擎RDS MySQL 服务接入地址:https://www.volcengine.com/docs/6313/170639

```json
{
"mcpServers": {
"rds_mysql": {
"command": "uvx",
"args": [
"--from",
"mcp-server-rds-mysql>=0.1.1",
"mcp-server-rds-mysql"
],
"transportType": "stdio",
"env": {
"VOLCENGINE_ENDPOINT": "火山引擎endpoint",
"VOLCENGINE_REGION": "火山引擎资源region",
"VOLCENGINE_ACCESS_KEY": "火山引擎账号ACCESSKEY",
"VOLCENGINE_SECRET_KEY": "火山引擎账号SECRETKEY",
"MCP_SERVER_PORT": "MCP server监听端口"
}
}
}
}
```

```json
{
"mcpServers": {
Expand Down
2 changes: 1 addition & 1 deletion server/mcp_server_rds_mysql/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-server-rds-mysql"
version = "0.1.0"
version = "0.1.1"
description = "MCP server for RDS MySQL"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
24 changes: 24 additions & 0 deletions server/mcp_server_rds_postgresql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,30 @@ Obtain the access key ID, secret access key, and region from the Volcengine Mana

## Deployment
Volcengine RDS PostgreSQL service access address: https://www.volcengine.com/docs/6438/69237

```json
{
"mcpServers": {
"rds_postgresql": {
"command": "uvx",
"args": [
"--from",
"mcp-server-rds-postgresql>=1.1.1",
"mcp-server-rds-postgresql"
],
"transportType": "stdio",
"env": {
"VOLCENGINE_ENDPOINT": "Volcengine endpoint",
"VOLCENGINE_REGION": "Volcengine resource region",
"VOLCENGINE_ACCESS_KEY": "Volcengine account ACCESSKEY",
"VOLCENGINE_SECRET_KEY": "Volcengine account SECRETKEY",
"MCP_SERVER_PORT": "MCP server listening port"
}
}
}
}
```

```json
{
"mcpServers": {
Expand Down
2 changes: 1 addition & 1 deletion server/mcp_server_rds_postgresql/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-server-rds-postgresql"
version = "1.1.0"
version = "1.1.1"
description = "MCP server for RDS PostgreSQL"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
41 changes: 41 additions & 0 deletions server/mcp_server_redis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,26 @@ Volcengine Redis service access address: https://www.volcengine.com/docs/6293/65

### Example 1: static AK/SK (stdio)

```json
{
"mcpServers": {
"redis": {
"command": "uvx",
"args": [
"--from",
"mcp-server-redis>=1.0.1",
"mcp-server-redis"
],
"env": {
"VOLCENGINE_REGION": "Volcengine resource region",
"VOLCENGINE_ACCESS_KEY": "Volcengine account ACCESS_KEY",
"VOLCENGINE_SECRET_KEY": "Volcengine account SECRET_KEY"
}
}
}
}
```

```json
{
"mcpServers": {
Expand All @@ -259,6 +279,27 @@ Volcengine Redis service access address: https://www.volcengine.com/docs/6293/65

### Example 2: temporary credentials through environment variables (stdio)

```json
{
"mcpServers": {
"redis": {
"command": "uvx",
"args": [
"--from",
"mcp-server-redis>=1.0.1",
"mcp-server-redis"
],
"env": {
"VOLCENGINE_REGION": "cn-beijing",
"VOLCENGINE_ACCESS_KEY": "",
"VOLCENGINE_SECRET_KEY": "",
"VOLCENGINE_SESSION_TOKEN": ""
}
}
}
}
```

```json
{
"mcpServers": {
Expand Down
2 changes: 1 addition & 1 deletion server/mcp_server_redis/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "mcp-server-redis"
version = "1.0.0"
version = "1.0.1"
description = "MCP server for Redis"
readme = "README.md"
requires-python = ">=3.10"
Expand Down
Loading