Server data from the Official MCP Registry
Enterprise-grade MySQL MCP Server with OAuth 2.0, 106 tools, and Docker deployment
Enterprise-grade MySQL MCP Server with OAuth 2.0, 106 tools, and Docker deployment
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Imported from the Official MCP Registry. Trust signals: trusted author (7/7 approved).
3 files analyzed ยท No issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"mcp-server": {
"args": [
"-y",
"@neverinfamous/mysql-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
๐ Full Documentation (Wiki) โข Changelog โข Security โข Release Article
MySQL MCP is a production-ready integration engineered for AI agents. It minimizes LLM token consumption by up to 90% via sandboxed Code Mode. It scales reliably through built-in connection pooling. It secures database access using strict OAuth 2.1 validation.
| Feature | Description |
|---|---|
| Specialized Tools | Access 200+ specialized tools. Manage core CRUD, JSON, spatial data, document stores, and clusters. |
| 23 Resources | Monitor schema, performance metrics, process lists, replication status, and InnoDB diagnostics in real-time. |
| 19 AI-Powered Prompts | Execute guided workflows for query building, schema design, performance tuning, and infrastructure setup. |
| Code Mode | Execute operations locally inside a V8 isolate. Reduce LLM token overhead by 70-90%. |
| Token-Optimized Payloads | Maximize token efficiency. Use optional flags to reduce response size for large payloads. |
| OAuth 2.1 Security | Enforce granular access control with RFC compliance, strict scopes, and Keycloak integration. |
| Smart Tool Filtering | Use 28 tool groups and 16 shortcuts to stay within IDE tool limits. |
| Dual HTTP Transport | Support modern streamable HTTP and legacy SSE clients simultaneously with full session management. |
| Connection Pooling | Leverage built-in connection pooling for efficient, highly concurrent database access. |
| Ecosystem Integrations | Manage MySQL Router, ProxySQL, and MySQL Shell utilities directly from your agent. |
| Advanced Encryption | Enforce TLS/SSL connections. Manage data masking, encryption monitoring, and compliance effortlessly. |
| Production-Ready Security | Prevent SQL injection with parameterized queries. Rely on strict input validation and audit logging. |
| Deterministic Errors | Receive structured responses with actionable suggestions. Eliminate silent failures and raw exceptions. |
| Strict TypeScript | Deploy a 100% type-safe codebase backed by over 2100 tests and high coverage. Backed by robust Vitest and Playwright suites. Features zero skipped tests. Guarantees deterministic reliability in production. |
| Protocol Compliant | Support MCP 2024-11-05 with tool safety hints, resource priorities, and progress notifications. |
pnpm add -g @neverinfamous/mysql-mcp
Run the server:
mysql-mcp --transport stdio --mysql "mysql://user:password@localhost:3306/database"
Or use npx without installing:
npx @neverinfamous/mysql-mcp --transport stdio --mysql "mysql://user:password@localhost:3306/database"
Note on Namespaces: The Docker image uses the
writenotenownamespace. The GitHub repo usesneverinfamous.
docker run -i --rm writenotenow/mysql-mcp:latest \
--transport stdio \
--mysql "mysql://user:password@host.docker.internal:3306/database"
git clone https://github.com/neverinfamous/mysql-mcp.git
cd mysql-mcp
pnpm install
pnpm run build
node dist/cli.js --transport stdio --mysql "mysql://user:password@localhost:3306/database"
Code Mode (mysql_execute_code) reduces token usage by 70-90%. It is included by default.
Code executes in a C++ V8 isolate sandbox. The server uses a physically separate V8 isolate via isolated-vm. The server enforces strict heap limits and synchronous termination. The server maps all mysql.* API calls through the boundary using native wrappers. This includes multiple layers of defense-in-depth and fleet-standard restrictions:
ivm.Reference wrappers.require(), import(), eval(), process, and __proto__. They also block filesystem/network access and system commands.JSON.stringify serialization aborts mid-flight when exceeding size caps (default 100KB).REDIS_URL is provided, with graceful in-memory fallback.readonly: true, write methods return structured errors instead of executing.admin scope when OAuth is enabled.Run with only Code Mode enabled. A single tool provides full capability access:
{
"mcpServers": {
"mysql-mcp": {
"command": "node",
"args": [
"/path/to/mysql-mcp/dist/cli.js",
"--transport",
"stdio",
"--tool-filter",
"codemode"
],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_user",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database",
"REDIS_URL": "redis://localhost:6379"
}
}
}
}
This exposes just mysql_execute_code. Agents write JavaScript against the typed SDK. They compose queries and chain operations across 28 groups. They return exactly the needed data in one execution. This mirrors the Code Mode pattern. It ensures fixed token costs.
[!TIP] Maximize Token Savings: Instruct your AI agent to prefer Code Mode over individual tool calls:
"When using mysql-mcp, prefer
mysql_execute_code(Code Mode) for multi-step database operations to minimize token usage."For maximum savings, use
--tool-filter codemodeto run with Code Mode as your only tool. See the Code Mode wiki for full API documentation.
Use the HTTP transport for remote access:
npx -y @neverinfamous/mysql-mcp \
--transport http \
--server-host 0.0.0.0 \
--port 3000 \
--mysql "mysql://user:pass@localhost:3306/db"
Docker:
docker run --rm -p 3000:3000 \
writenotenow/mysql-mcp:latest \
--transport http --server-host 0.0.0.0 --port 3000 --mysql "mysql://user:pass@host.docker.internal:3306/db"
The server supports two MCP transport protocols simultaneously. Both modern and legacy clients can connect:
Modern protocol (MCP 2024-11-05) โ single endpoint, session-based:
| Method | Endpoint | Purpose |
|---|---|---|
POST | /mcp | JSON-RPC requests (initialize, tools/list, etc.) |
GET | /mcp | SSE stream for server notifications |
DELETE | /mcp | Session termination |
Rate Limit: HTTP transport is limited to 100 requests per minute per IP. Distributed across deployments via Redis if
REDIS_URLis provided, with graceful in-memory fallback.
Sessions are managed via the Mcp-Session-Id header.
Use stateless deployments where sessions are not needed:
node dist/cli.js --transport http --server-host 0.0.0.0 --port 3000 --stateless --mysql "mysql://..."
In stateless mode: GET /mcp returns 405, DELETE /mcp returns 204, /sse and /messages return 404. Each POST /mcp creates a fresh transport.
Legacy protocol (MCP 2024-11-05) โ for clients like Python mcp.client.sse:
| Method | Endpoint | Purpose |
|---|---|---|
GET | /sse | Opens SSE stream, returns /messages?sessionId=<id> endpoint |
POST | /messages?sessionId=<id> | Send JSON-RPC messages to the session |
| Method | Endpoint | Purpose |
|---|---|---|
GET | /health | Health check (bypasses rate limiting, always available for monitoring) |
mysql-mcp supports two authentication mechanisms for HTTP transport:
--auth-token)Use lightweight authentication for development:
node dist/cli.js --transport http --server-host 0.0.0.0 --port 3000 --auth-token my-secret --mysql "mysql://..."
# Or via environment variable
export MCP_AUTH_TOKEN=my-secret
node dist/cli.js --transport http --server-host 0.0.0.0 --port 3000 --mysql "mysql://..."
Clients must include Authorization: Bearer my-secret on all requests. /health and / are exempt. Unauthenticated requests receive 401 with WWW-Authenticate: Bearer headers per RFC 6750.
Use full OAuth 2.1 for production deployments:
node dist/cli.js \
--transport http \
--server-host 0.0.0.0 \
--port 3000 \
--mysql "mysql://user:pass@localhost:3306/db" \
--oauth-enabled \
--oauth-issuer http://localhost:8080/realms/mysql-mcp \
--oauth-audience mysql-mcp-client
Additional flags:
--oauth-jwks-uri <url>(auto-discovered if omitted),--oauth-clock-tolerance <seconds>(default: 60).
Access control is managed through OAuth scopes:
| Scope | Access Level |
|---|---|
read | Read-only queries (SELECT, EXPLAIN) |
write | Read + write operations |
admin | Full administrative access |
full | Grants all access |
db:{name} | Access to specific database |
schema:{name} | Access to specific schema |
table:{schema}:{table} | Access to specific table |
This implementation follows full OAuth 2.1 for production multi-tenant deployments:
/.well-known/oauth-protected-resource)read, write, admin, full, db:{name}, schema:{name}, table:{schema}:{table}AsyncLocalStorage context threadingNote for Keycloak users: Add an Audience mapper to your client. This includes the correct
audclaim. (Client โ Client scopes โ dedicated scope โ Add mapper โ Audience)
[!NOTE] Per-tool scope enforcement: Scopes are enforced at the tool level. Each tool group requires a specific scope. When OAuth is enabled, every tool invocation checks the calling token's scopes before execution. When OAuth is not configured, scope checks are skipped entirely.
[!WARNING] HTTP without authentication: When using
--transport httpwithout enabling OAuth or--auth-token, all clients have full unrestricted access. Always enable authentication for production HTTP deployments. See SECURITY.md for details.
{
"mcpServers": {
"mysql-mcp": {
"command": "npx",
"args": [
"-y",
"@neverinfamous/mysql-mcp",
"--transport",
"stdio",
"--mysql",
"mysql://user:password@localhost:3306/database"
]
}
}
}
{
"mcpServers": {
"mysql-mcp": {
"command": "npx",
"args": ["-y", "@neverinfamous/mysql-mcp", "--transport", "stdio"],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "your_user",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database",
"MYSQL_XPORT": "33060"
}
}
}
}
Note:
MYSQL_XPORT(X Protocol port) defaults to33060if omitted. Only needed formysqlsh_import_jsonanddocstoretools. Set to your MySQL Router X Protocol port (e.g.,6448) when using InnoDB Cluster.
๐ See the Configuration Wiki for more configuration options.
| Scenario | Host to Use | Example Connection String |
|---|---|---|
| MySQL on host machine | host.docker.internal | mysql://user:pass@host.docker.internal:3306/db |
| MySQL in Docker | host.docker.internal (Local) or mysql (Docker Compose) | mysql://user:pass@host.docker.internal:3306/db |
| Remote/Cloud MySQL | Hostname or IP | mysql://user:pass@db.example.com:3306/db |
If MySQL is installed directly on your computer (via installer, Homebrew, etc.):
[
"--mysql",
"mysql://user:password@host.docker.internal:3306/database"
]
For local Docker setups, standardize on host.docker.internal. If you are using Docker Compose, you can use the service name mysql (or your specific container name) for docker-compose networking:
Create a network and run MySQL:
docker network create mynet
docker run -d --name mysql-db --network mynet -e MYSQL_ROOT_PASSWORD=pass mysql:8
Run MCP server on the same network:
docker run -i --rm --network mynet writenotenow/mysql-mcp:latest \
--transport stdio --mysql "mysql://root:pass@mysql-db:3306/mysql"
Use the remote hostname directly:
[
"--mysql",
"mysql://user:password@your-instance.region.rds.amazonaws.com:3306/database"
]
| Provider | Example Hostname |
|---|---|
| AWS RDS | your-instance.xxxx.us-east-1.rds.amazonaws.com |
| Google Cloud SQL | project:region:instance (via Cloud SQL Proxy) |
| Azure MySQL | your-server.mysql.database.azure.com |
| PlanetScale | aws.connect.psdb.cloud (SSL required) |
| DigitalOcean | your-cluster-do-user-xxx.db.ondigitalocean.com |
Tip: For remote connections, ensure your MySQL server allows connections from Docker's IP range and that firewalls/security groups permit port 3306.
[!IMPORTANT] AI IDEs like Cursor have tool limits (typically 40-50 tools). With 200+ tools available, you MUST use tool filtering. This keeps you within your IDE's limits. All shortcuts and tool groups include Code Mode by default. To exclude it, add
-codemodeto your filter:--tool-filter core,json,-codemode
The --tool-filter argument accepts shortcuts, groups, or tool names โ mix and match freely:
| Filter Pattern | Example | Tools | Description |
|---|---|---|---|
| Shortcut only | starter | 43 | Use a predefined bundle |
| Groups only | core,json,transactions | 36 | Combine individual groups |
| Shortcut + Group | starter,spatial | 55 | Extend a shortcut |
| Shortcut - Tool | starter,-mysql_drop_table | 42 | Remove specific tools |
| Shortcut | Tools | Use Case | What's Included |
|---|---|---|---|
starter | 43 | Standard Package | core, json, transactions, text, codemode |
essential | 20 | Minimal footprint | core, transactions, codemode |
dev-power | 47 | Power Developer | core, schema, performance, fulltext, transactions, codemode |
dev-analytics | 44 | Developer Analytics | core, stats, performance, codemode |
ai-data-nosql | 39 | AI Data NoSQL | core, json, docstore, codemode |
ai-search | 35 | AI Search | core, text, fulltext, vector, codemode |
ai-spatial | 32 | AI Spatial Analyst | core, spatial, transactions, codemode |
ai-vector | 29 | AI Vector Analyst | core, vector, fulltext, codemode |
dba-monitor | 43 | DBA Monitoring | core, monitoring, performance, sysschema, optimization, codemode |
dba-manage | 44 | DBA Management | core, admin, backup, replication, partitioning, events, codemode |
dba-secure | 37 | DBA Security | core, security, roles, transactions, codemode |
dba-schema | 36 | DBA Schema | core, schema, introspection, migration, codemode |
base-relational | 37 | Base Relational | core, transactions, text, schema, codemode |
base-analytics | 27 | Base Analytics | stats, events, codemode |
base-nosql | 33 | Base NoSQL | docstore, spatial, vector, codemode |
ecosystem | 41 | External Tools | cluster, proxysql, router, shell, codemode |
Note: Tool counts below do NOT include Code Mode (
mysql_execute_code), which is automatically added to all groups.
| Group | Tools | Description |
|---|---|---|
codemode | 1 | Code Mode (sandboxed code execution) ๐ Recommended |
core | 12 | Read/write queries, tables, indexes |
transactions | 7 | BEGIN, COMMIT, ROLLBACK, savepoints |
json | 17 | JSON functions, merge, diff, stats |
text | 6 | REGEXP, LIKE, SOUNDEX |
fulltext | 5 | Natural language & boolean search |
performance | 11 | EXPLAIN, query analysis, anomaly detection |
optimization | 4 | Index hints, database-wide audits, EXPLAIN recommendations |
admin | 9 | OPTIMIZE, ANALYZE, CHECK, insights |
monitoring | 7 | PROCESSLIST, status variables |
backup | 7 | Export, import, mysqldump, audit backups |
replication | 5 | Master/slave, binlog |
partitioning | 4 | Partition management |
schema | 11 | Views, procedures, triggers, constraints |
introspection | 6 | Dependency graphs, cascade simulation, snapshots |
migration | 6 | Schema versioning, apply, rollback, history |
shell | 10 | MySQL Shell utilities |
events | 6 | Event Scheduler management |
sysschema | 8 | sys schema diagnostics |
stats | 20 | Statistical analysis, window functions, sampling |
spatial | 12 | Spatial/GIS operations |
security | 9 | Audit, SSL, encryption, masking |
roles | 8 | MySQL 8.0 role management |
docstore | 9 | Document Store collections |
cluster | 10 | Group Replication, InnoDB Cluster |
proxysql | 11 | ProxySQL management |
router | 9 | MySQL Router REST API |
vector | 11 | Vector embeddings, KNN search, hybrid search (MySQL 9.0+) |
Add one of these configurations to your IDE's MCP settings file (e.g., cline_mcp_settings.json, .cursor/mcp.json, or equivalent):
Best for: General MySQL database work with an AI agent. Exposes a single tool (mysql_execute_code) that provides access to its full toolset via a JavaScript sandbox.
{
"mcpServers": {
"mysql-mcp": {
"command": "npx",
"args": [
"-y",
"@neverinfamous/mysql-mcp",
"--transport",
"stdio",
"--tool-filter",
"codemode"
],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3306",
"MYSQL_USER": "mcp_user",
"MYSQL_PASSWORD": "your_password",
"MYSQL_DATABASE": "your_database"
}
}
}
}
Best for: Monitoring InnoDB Cluster, Group Replication status, and cluster topology.
โ ๏ธ Prerequisites:
- InnoDB Cluster must be configured and running with Group Replication enabled
- Connect to a cluster node directly (e.g.,
localhost:3307) โ NOT a standalone MySQL instance- Use
cluster_adminorrootuser with appropriate privileges- See MySQL Ecosystem Setup Guide for cluster setup instructions
{
"mcpServers": {
"mysql-mcp-cluster": {
"command": "npx",
"args": [
"-y",
"@neverinfamous/mysql-mcp",
"--transport",
"stdio",
"--tool-filter",
"cluster"
],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3307",
"MYSQL_USER": "cluster_admin",
"MYSQL_PASSWORD": "cluster_password",
"MYSQL_DATABASE": "mysql"
}
}
}
}
Best for: MySQL Router, ProxySQL, MySQL Shell, and InnoDB Cluster deployments.
โ ๏ธ Prerequisites:
- InnoDB Cluster requires a running cluster. This enables Router REST API authentication.
- Router REST API uses self-signed HTTPS certificates. Set
MYSQL_ROUTER_INSECURE=trueto bypass verification.- X Protocol: InnoDB Cluster includes the MySQL X Plugin by default. Set
MYSQL_XPORTto the Router's X Protocol port (e.g.,6448) formysqlsh_import_jsonanddocstoretools- See MySQL Ecosystem Setup Guide for detailed instructions
{
"mcpServers": {
"mysql-mcp-ecosystem": {
"command": "npx",
"args": [
"-y",
"@neverinfamous/mysql-mcp",
"--transport",
"stdio",
"--tool-filter",
"ecosystem"
],
"env": {
"MYSQL_HOST": "localhost",
"MYSQL_PORT": "3307",
"MYSQL_XPORT": "6448",
"MYSQL_USER": "cluster_admin",
"MYSQL_PASSWORD": "cluster_password",
"MYSQL_DATABASE": "testdb",
"MYSQL_ROUTER_URL": "https://localhost:8443",
"MYSQL_ROUTER_USER": "rest_api",
"MYSQL_ROUTER_PASSWORD": "router_password",
"MYSQL_ROUTER_INSECURE": "true",
"PROXYSQL_HOST": "localhost",
"PROXYSQL_PORT": "6032",
"PROXYSQL_USER": "radmin",
"PROXYSQL_PASSWORD": "radmin",
"MYSQLSH_PATH": "/usr/local/bin/mysqlsh"
}
}
}
}
Customization Notes:
/path/to/mysql-mcp/ with your actual installation pathC:/mysql-mcp/dist/cli.js) or escape backslashes"MYSQLSH_PATH": "C:\\Program Files\\MySQL\\MySQL Shell 9.5\\bin\\mysqlsh.exe"mysql://cluster resource is only available when connected to an InnoDB Cluster nodeLegacy Syntax (still supported):
If you start with a negative filter (e.g., -ecosystem), it enables all tools first. It then subtracts the specified tools.
| Prefix | Target | Example | Effect |
|---|---|---|---|
| (none) | Shortcut | starter | Whitelist Mode: Enable ONLY this shortcut |
| (none) | Group | core | Whitelist Mode: Enable ONLY this group |
| (none) | Tool | mysql_read_query | Whitelist Mode: Enable ONLY this tool |
+ | Group | +spatial | Add tools from this group to current set |
- | Group | -admin | Remove tools in this group from current set |
+ | Tool | +mysql_explain | Add one specific tool |
- | Tool | -mysql_drop_table | Remove one specific tool |
You can list individual tool names (without + prefix) to create a fully custom whitelist โ only the tools you specify will be enabled:
The easiest way to filter is using whitelist mode. Simply specify the shortcut you want. Everything else is automatically disabled.
Architectural Rule: Tool filtering allows skipping the
--mysqlconnection. Do this if only ecosystem tools (router,proxysql,shell) are used.
# Enable exactly 3 tools (whitelist mode)
--tool-filter "mysql_read_query,mysql_write_query,mysql_list_tables"
# Mix tools from different groups
--tool-filter "mysql_read_query,mysql_explain,mysql_json_extract"
# Combine with a shortcut or group
--tool-filter "starter,+mysql_spatial_distance,+mysql_json_diff"
This is useful for scripted or automated clients that need a minimal, precise set of capabilities.
๐ See the Tool Filtering Wiki for advanced examples.
This server includes 19 intelligent prompts for guided workflows:
| Prompt | Description |
|---|---|
mysql_query_builder | Construct SQL queries with security best practices |
mysql_schema_design | Design table schemas with indexes and relationships |
mysql_performance_analysis | Analyze slow queries with optimization recommendations |
mysql_migration | Generate migration scripts with rollback options |
mysql_database_health_check | Comprehensive database health assessment |
mysql_backup_strategy | Enterprise backup planning with RTO/RPO |
mysql_index_tuning | Index analysis and optimization workflow |
mysql_setup_router | MySQL Router configuration guide |
mysql_setup_proxysql | ProxySQL configuration guide |
mysql_setup_replication | Replication setup guide |
mysql_setup_shell | MySQL Shell usage guide |
mysql_tool_index | Complete tool index with categories |
mysql_quick_query | Quick query execution shortcut |
mysql_quick_schema | Quick schema exploration |
mysql_setup_events | Event Scheduler setup guide |
mysql_sys_schema_guide | sys schema usage and diagnostics |
mysql_setup_spatial | Spatial/GIS data setup guide |
mysql_setup_cluster | InnoDB Cluster/Group Replication guide |
mysql_setup_docstore | Document Store / X DevAPI guide |
This server exposes 23 resources for database observability and telemetry:
| Resource | Description |
|---|---|
mysql://schema | Full database schema |
mysql://tables | Table listing with metadata |
mysql://table/{name} | Specific Table Schema |
mysql://variables | Server configuration variables |
mysql://status | Server status metrics |
mysql://processlist | Active connections and queries |
mysql://pool | Connection pool statistics |
mysql://capabilities | Server version, features, tool categories |
mysql://health | Comprehensive health status |
mysql://performance | Query performance metrics |
mysql://indexes | Index usage and statistics |
mysql://replication | Replication status and lag |
mysql://innodb | InnoDB buffer pool and engine metrics |
mysql://events | Event Scheduler status and scheduled events |
mysql://sysschema | sys schema diagnostics summary |
mysql://locks | InnoDB lock contention detection |
mysql://cluster | Group Replication/InnoDB Cluster status |
mysql://spatial | Spatial columns and indexes |
mysql://docstore | Document Store collections |
mysql://insights | Business insights memo from mysql_append_insight |
mysql://audit-log | Forensic audit trail and pre-mutation snapshot stats |
mysql://metrics | In-memory streaming telemetry (p50/p95/p99 latency) |
mysql://help | Critical gotchas, parameter aliases, and API reference |
Tip: Configure the server using native JSON or YAML files via the
--config <path>flag. Precedence follows: CLI Flags > Environment Variables > Config File > Defaults. See theserver-config-example.jsontemplate at the root of the project for setup details.
For specialized setups, see these Wiki pages:
| Topic | Description |
|---|---|
| MySQL Router | Configure Router REST API access for InnoDB Cluster |
| ProxySQL | Configure ProxySQL admin interface access |
| MySQL Shell | Configure MySQL Shell for dump/load operations |
The server caches schema metadata to reduce repeated queries during tool/resource invocations.
| Variable | Default | Description |
|---|---|---|
METADATA_CACHE_TTL_MS | 30000 | Cache TTL for schema metadata (milliseconds) |
LOG_LEVEL | info | Log verbosity: debug, info, warn, error |
Tip: Lower
METADATA_CACHE_TTL_MSfor development (e.g.,5000), or increase it for production with stable schemas (e.g.,300000= 5 min).
Built-in payload optimization: Many tools support optional
summary: truefor condensed responses. They also supportlimitparameters to cap result sizes. These are particularly useful for cluster status, monitoring, and sys schema tools where full responses can be large. See the code map for per-tool details.
| Option | Environment Variable | Description |
|---|---|---|
--config, -c | โ | Configuration file path (.yaml or .json) |
--dump-config | โ | Dump current configuration to stdout and exit |
Documentation truncated โ see the full README on GitHub.
Be the first to review this server!
by Toleno ยท Developer Tools
Toleno Network MCP Server โ Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace ยท Developer Tools
Create, build, and publish Python MCP servers to PyPI โ conversationally.
by Microsoft ยท Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption