byted-redis
A skill to launch and interact with the Volcengine Redis MCP Server. This skill enables agents to manage Redis instances, databases, accounts, backups, and configurations using the MCP protocol. It connects to Volcengine via the provided credentials. Use this skill when the user needs to manage Volcengine Redis resources via MCP (e.g., list instances, query logs/keys, manage accounts/allowlists/backups/parameters).
What this skill does
# Volcengine Redis MCP Server Skill
## ๐ต Overview
This skill provides a complete set of tools to interact with Volcengine Redis using the Model Context Protocol (MCP).
It allows users to query instances, manage parameters, and perform operational tasks on Volcengine Redis through natural language or programmatic invocation.
---
## Supported Tools
The MCP Server exposes the following capabilities:
1. `describe_regions` - Query available regional resources.
2. `describe_zones` - Query available zone resources.
3. `describe_vpcs` - Query VPCs.
4. `describe_subnets` - Query subnets.
5. `describe_db_instances` - List Redis instances.
6. `describe_db_instance_detail` - View details for a specific instance.
7. `describe_db_instance_specs` - List supported instance specs.
8. `describe_slow_logs` - Query slow logs.
9. `describe_hot_keys` - Query hot keys.
10. `describe_big_keys` - Query big keys.
11. `describe_backups` - Query backup list.
12. `describe_db_instance_params` - List instance parameters.
13. `describe_parameter_groups` - Query parameter templates.
14. `describe_parameter_group_detail` - View parameter template details.
15. `describe_allow_lists` - Query IP whitelists.
16. `describe_allow_list_detail` - View whitelist details.
17. `list_db_account` - Query database accounts.
18. `create_db_instance` - Create a Redis instance.
19. `modify_db_instance_params` - Modify parameter configurations.
20. `create_db_account` - Create an account for a Redis instance.
21. `create_allow_list` - Create a new IP whitelist.
22. `associate_allow_list` - Bind a whitelist to an instance.
23. `disassociate_allow_list` - Unbind a whitelist from an instance.
24. `describe_db_instance_shards` - Query shard information.
25. `describe_node_ids` - Query node IDs.
26. `modify_db_instance_name` - Modify an instance's name.
27. `describe_tags_by_resource` - Query tags.
28. `describe_backup_plan` - Query backup plan.
29. `describe_pitr_time_window` - Query PITR time window.
30. `describe_backup_point_download_urls` - Get backup point download URLs.
31. `describe_cross_region_backup_policy` - Query cross-region backup policy.
32. `describe_cross_region_backups` - Query cross-region backups.
33. `create_parameter_group` - Create a parameter group.
34. `create_db_endpoint_public_address` - Create a public endpoint.
35. `describe_db_instance_bandwidth_per_shard` - Query shard bandwidth.
36. `describe_db_instance_acl_commands` - Query supported ACL commands.
37. `describe_db_instance_acl_categories` - Query supported ACL categories.
38. `describe_planned_events` - Query planned events.
39. `describe_key_scan_jobs` - Query key scan jobs.
40. `describe_eip_addresses` - Query EIP addresses.
## ๐ง Prerequisites
- Python 3.10+
- `uv` package manager (installed)
- Volcengine account with proper permissions for Redis and VPC services.
## ๐ Environment Variables
Before running the skill, prepare one of the following credential modes.
### Option A: Static AK/SK or temporary credentials in environment variables
Prepare these environment variables before running the skill:
- `VOLCENGINE_ACCESS_KEY`
- `VOLCENGINE_SECRET_KEY`
- `VOLCENGINE_REGION` (for example `cn-beijing`)
If you are using temporary credentials, also prepare:
- `VOLCENGINE_SESSION_TOKEN`
### Option B: STS credentials via `Authorization` / `authorization`
Redis MCP also supports a Bearer token whose body is a Base64-encoded JSON payload in the `Authorization` header.
```http
Authorization: Bearer BASE64_JSON_PAYLOAD
```
The decoded JSON payload should contain these fields:
- `AccessKeyId`
- `SecretAccessKey`
- `SessionToken`
- `CurrentTime`
- `ExpiredTime`
- `Region`
Notes:
- `SessionToken` is required when using STS credentials.
- If `CurrentTime` and `ExpiredTime` are present, the server validates whether the STS token is expired.
- For stdio-based skill scripts, you may expose this value through `AUTHORIZATION` or `authorization`.
- Authorization credentials take precedence over environment AK/SK when both are provided.
## ๐ Usage
### 1. Test & Client Example
Use the provided script to verify the server and view usage examples for the stdio flow:
```bash
uv run scripts/call_redis_mcp_example.py
```
### 2. Service Management (Optional)
To run the server as a daemon:
```bash
./scripts/start_volcengine_redis_mcp.sh
./scripts/status_volcengine_redis_mcp.sh
./scripts/stop_volcengine_redis_mcp.sh
```
## ๐ป Programmatic Usage via MCP Client
You can use the provided Python scripts to programmatically call the MCP Server. The bundled client supports:
- `VOLCENGINE_ACCESS_KEY` + `VOLCENGINE_SECRET_KEY`
- optional `VOLCENGINE_SESSION_TOKEN`
- `AUTHORIZATION` / `authorization` for STS Bearer payloads
Example:
```python
import asyncio
import sys
# Ensure imports work from the scripts directory
sys.path.append("scripts")
from mcp_client import RedisMCPClient
async def main():
async with RedisMCPClient() as client:
# List tools
tools = await client.list_tools()
print("Available tools:", [t['name'] for t in tools])
# Call a tool
result = await client.call_tool("describe_db_instances", {})
print(result)
asyncio.run(main())
```
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only โ no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.