# Minecraft Wiki MCP Server
[](README.md) [](README_CN.md)
## Project Overview
A **MCP**-based **Minecraft Wiki** backend server that provides convenient access to Minecraft Wiki content. Now supports quick deployment via **uvx** without complex configuration.
Note: This project only provides example Minecraft wiki API. If you need local API deployment or SSE support, please visit [this project](https://github.com/rice-awa/minecraft-wiki-fetch-api) for more information.
### Features
- π **Wiki Content Search**: Search Minecraft Wiki pages by keywords
- π **Page Content Retrieval**: Get complete page content in HTML and Markdown formats
- π **Batch Page Retrieval**: Efficiently retrieve multiple pages in batch
- β
**Page Existence Check**: Quick check if a page exists
- π₯ **Health Monitoring**: Monitor backend Wiki API service status
- π **One-Click Deployment**: Quick installation and running via uvx
- βοΈ **Environment Variables**: Flexible configuration without config files
- π» **Command Line Arguments**: Override configuration via command line parameters
## Quick Start
### π Recommended: Using uvx
No installation required, run directly:
```bash
# Basic usage (with default configuration)
uvx mc-wiki-fetch-mcp
# Use custom API URL
MC_WIKI_API_BASE_URL=http://localhost:3000 uvx mc-wiki-fetch-mcp
# Enable verbose logging
MC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp
# Use command line arguments
uvx mc-wiki-fetch-mcp --api-url http://localhost:3000 --log-level DEBUG
# Show help
uvx mc-wiki-fetch-mcp --help
```
### π» Integration with Claude Desktop
1. **Find configuration file location:**
- **Windows**: `%APPDATA%\Claude\claude_desktop_config.json`
- **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
- **Linux**: `~/.config/claude/claude_desktop_config.json`
2. **Edit configuration file:**
```json
{
"mcpServers": {
"minecraft-wiki": {
"command": "uvx",
"args": ["mc-wiki-fetch-mcp"],
"env": {
"MC_WIKI_API_BASE_URL": "http://mcwiki.rice-awa.top"
}
}
}
}
```
3. **Restart Claude Desktop**
## Configuration Options
### Environment Variables Configuration
| Environment Variable | Description | Default Value |
|----------------------|-------------|---------------|
| `MC_WIKI_API_BASE_URL` | Wiki API base URL | `http://mcwiki.rice-awa.top` |
| `MC_WIKI_API_TIMEOUT` | API request timeout (seconds) | `30` |
| `MC_WIKI_API_MAX_RETRIES` | Maximum retry attempts | `3` |
| `MC_WIKI_DEFAULT_FORMAT` | Default output format | `both` |
| `MC_WIKI_DEFAULT_LIMIT` | Default search results limit | `10` |
| `MC_WIKI_MAX_BATCH_SIZE` | Maximum batch processing size | `20` |
| `MC_WIKI_MAX_CONCURRENCY` | Maximum concurrency | `5` |
| `MC_WIKI_MCP_NAME` | MCP server name | `Minecraft Wiki MCP (stdio)` |
| `MC_WIKI_MCP_DESCRIPTION` | MCP server description | Auto-generated |
| `MC_WIKI_LOG_LEVEL` | Log level | `INFO` |
### Command Line Arguments
```bash
uvx mc-wiki-fetch-mcp --help
```
| Parameter | Description |
|-----------|-------------|
| `--api-url` | Wiki API base URL (overrides environment variable) |
| `--timeout` | API request timeout (seconds) |
| `--max-retries` | Maximum retry attempts |
| `--log-level` | Log level (DEBUG/INFO/WARNING/ERROR) |
| `--version` | Show version information |
| `--help` | Show help information |
## Configuration Examples
### Basic Configuration Example
```bash
# Set environment variables
export MC_WIKI_API_BASE_URL="http://localhost:3000"
export MC_WIKI_LOG_LEVEL="DEBUG"
# Run server
uvx mc-wiki-fetch-mcp
```
### Claude Desktop Advanced Configuration
```json
{
"mcpServers": {
"minecraft-wiki": {
"command": "uvx",
"args": [
"mc-wiki-fetch-mcp",
"--api-url", "http://localhost:3000",
"--log-level", "INFO"
],
"env": {
"MC_WIKI_DEFAULT_LIMIT": "20",
"MC_WIKI_MAX_BATCH_SIZE": "50"
}
}
}
}
```
## Traditional Installation (Developers)
If you need to modify code or develop:
```bash
# Clone repository
git clone <repository-url>
cd mc-wiki-fetch-mcp
# Install dependencies
pip install -e .
# Run
mc-wiki-fetch-mcp
```
## π οΈ Available Tools
| Tool Name | Description | Main Parameters |
|-----------|-------------|-----------------|
| `search_wiki` | Search Wiki content | `query`, `limit`, `namespaces` |
| `get_wiki_page` | Get page content | `page_name`, `format`, `use_cache` |
| `get_wiki_pages_batch` | Batch get pages | `pages`, `format`, `concurrency` |
| `check_page_exists` | Check page existence | `page_name` |
| `check_wiki_api_health` | Health check | No parameters |
### Usage Examples
#### Using in Claude Desktop
After configuration, you can directly ask in Claude Desktop:
```
Please help me search for information about redstone
Get detailed content of the diamond page
Check if the "redstone circuit" page exists
Batch get content for "diamond", "redstone", and "enchanting" pages
```
## π§ Advanced Configuration
### Configuration Priority
Configuration priority order (high to low):
1. Command line arguments
2. Environment variables
3. Default values
### Configuration Parameter Description
| Parameter | Description | Default Value | Optional Values |
|-----------|-------------|---------------|-----------------|
| API Base URL | Wiki API service address | `http://mcwiki.rice-awa.top` | Any valid URL |
| Request Timeout | API request timeout | `30 seconds` | Positive integer (seconds) |
| Maximum Retries | Failed request retry count | `3 times` | Positive integer |
| Default Format | Page content output format | `both` | `html`, `markdown`, `both` |
| Search Limit | Default search result count | `10` | 1-50 |
| Batch Size | Maximum pages for batch processing | `20` | 1-100 |
| Concurrency | Maximum concurrent requests | `5` | 1-20 |
### Log Configuration
```bash
# Different log levels
MC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp # Detailed debug information
MC_WIKI_LOG_LEVEL=INFO uvx mc-wiki-fetch-mcp # Basic information
MC_WIKI_LOG_LEVEL=WARNING uvx mc-wiki-fetch-mcp # Only warnings and errors
MC_WIKI_LOG_LEVEL=ERROR uvx mc-wiki-fetch-mcp # Only errors
```
## π Troubleshooting
### Common Issues
#### 1. uvx command not found
**Problem**: `uvx: command not found`
**Solution**:
```bash
# Install uv
curl -LsSf https://astral.sh/uv/install.sh | sh
# Or use pip
pip install uv
```
#### 2. Cannot connect to Wiki API
**Problem**: Tool calls return connection errors
**Solution**:
1. Check environment variable configuration:
```bash
echo $MC_WIKI_API_BASE_URL
```
2. Test API connection:
```bash
curl http://your-api-url/health
```
3. Enable verbose logging:
```bash
MC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp
```
#### 3. Tools not showing in Claude Desktop
**Problem**: After configuration, MCP tools are not visible in Claude Desktop
**Solution**:
1. Confirm uvx is available:
```bash
uvx mc-wiki-fetch-mcp --version
```
2. Check Claude Desktop logs
3. Restart Claude Desktop
### Debugging Tips
#### Enable Verbose Logging
```bash
# Start server and view detailed logs
MC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp 2>debug.log
# View logs
tail -f debug.log
```
#### Test Configuration
```bash
# Test specific configuration
MC_WIKI_API_BASE_URL=http://localhost:3000 \
MC_WIKI_LOG_LEVEL=DEBUG \
uvx mc-wiki-fetch-mcp --help
```
#### Verify Environment Variables
```bash
# Check current environment variables
env | grep MC_WIKI
# Or check in Python
python -c "import os; print({k:v for k,v in os.environ.items() if k.startswith('MC_WIKI')})"
```
## π Related Documentation
- [UVX Packaging Summary](docs/UVX_PACKAGING_SUMMARY.md) - UVX packaging and environment variable configuration
- [API Documentation](docs/API_DOCUMENTATION.md) - Detailed API interface documentation
- [Usage Guide](docs/USAGE_GUIDE.md) - In-depth usage tutorial
- [Project Completion Summary](docs/PROJECT_COMPLETION_SUMMARY.md) - Project development summary
## π€ Contributing
Welcome to submit Issues and Pull Requests to improve the project!
## π License
This project is licensed under the MIT License. See [LICENSE](./LICENSE) file for details.
## π Getting Help
If you encounter problems or need help:
1. Check the troubleshooting section of this README
2. Check detailed documentation in the [docs/](docs/) directory
3. Submit an Issue describing your problem
4. Check log files for detailed error information
---
**Quick Start Tips**:
- π **Recommended**: Use `uvx mc-wiki-fetch-mcp` to get started quickly
- π» **Claude Desktop**: Use `uvx` command and environment variables in configuration
- βοΈ **Customize**: Adjust configuration through environment variables or command line arguments
- π§ **Development**: Clone repository and use `pip install -e .` for development
Raw data
{
"_id": null,
"home_page": null,
"name": "mc-wiki-fetch-mcp",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.10",
"maintainer_email": null,
"keywords": "api, mcp, minecraft, server, wiki",
"author": null,
"author_email": "rice_awa <riceawa@rice-awa.top>",
"download_url": "https://files.pythonhosted.org/packages/a9/51/6918e4216cfef420a5ea38648624b92d410bf06b0a48d9365b463b2a8d98/mc_wiki_fetch_mcp-0.3.0.tar.gz",
"platform": null,
"description": "# Minecraft Wiki MCP Server\n\n[](README.md) [](README_CN.md)\n\n## Project Overview\n\nA **MCP**-based **Minecraft Wiki** backend server that provides convenient access to Minecraft Wiki content. Now supports quick deployment via **uvx** without complex configuration.\n\nNote: This project only provides example Minecraft wiki API. If you need local API deployment or SSE support, please visit [this project](https://github.com/rice-awa/minecraft-wiki-fetch-api) for more information.\n\n### Features\n\n- \ud83d\udd0d **Wiki Content Search**: Search Minecraft Wiki pages by keywords\n- \ud83d\udcc4 **Page Content Retrieval**: Get complete page content in HTML and Markdown formats\n- \ud83d\udcda **Batch Page Retrieval**: Efficiently retrieve multiple pages in batch\n- \u2705 **Page Existence Check**: Quick check if a page exists\n- \ud83c\udfe5 **Health Monitoring**: Monitor backend Wiki API service status\n- \ud83d\ude80 **One-Click Deployment**: Quick installation and running via uvx\n- \u2699\ufe0f **Environment Variables**: Flexible configuration without config files\n- \ud83d\udcbb **Command Line Arguments**: Override configuration via command line parameters\n\n## Quick Start\n\n### \ud83d\ude80 Recommended: Using uvx\n\nNo installation required, run directly:\n\n```bash\n# Basic usage (with default configuration)\nuvx mc-wiki-fetch-mcp\n\n# Use custom API URL\nMC_WIKI_API_BASE_URL=http://localhost:3000 uvx mc-wiki-fetch-mcp\n\n# Enable verbose logging\nMC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp\n\n# Use command line arguments\nuvx mc-wiki-fetch-mcp --api-url http://localhost:3000 --log-level DEBUG\n\n# Show help\nuvx mc-wiki-fetch-mcp --help\n```\n\n### \ud83d\udcbb Integration with Claude Desktop\n\n1. **Find configuration file location:**\n - **Windows**: `%APPDATA%\\Claude\\claude_desktop_config.json`\n - **macOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`\n - **Linux**: `~/.config/claude/claude_desktop_config.json`\n\n2. **Edit configuration file:**\n ```json\n {\n \"mcpServers\": {\n \"minecraft-wiki\": {\n \"command\": \"uvx\",\n \"args\": [\"mc-wiki-fetch-mcp\"],\n \"env\": {\n \"MC_WIKI_API_BASE_URL\": \"http://mcwiki.rice-awa.top\"\n }\n }\n }\n }\n ```\n\n3. **Restart Claude Desktop**\n\n## Configuration Options\n\n### Environment Variables Configuration\n\n| Environment Variable | Description | Default Value |\n|----------------------|-------------|---------------|\n| `MC_WIKI_API_BASE_URL` | Wiki API base URL | `http://mcwiki.rice-awa.top` |\n| `MC_WIKI_API_TIMEOUT` | API request timeout (seconds) | `30` |\n| `MC_WIKI_API_MAX_RETRIES` | Maximum retry attempts | `3` |\n| `MC_WIKI_DEFAULT_FORMAT` | Default output format | `both` |\n| `MC_WIKI_DEFAULT_LIMIT` | Default search results limit | `10` |\n| `MC_WIKI_MAX_BATCH_SIZE` | Maximum batch processing size | `20` |\n| `MC_WIKI_MAX_CONCURRENCY` | Maximum concurrency | `5` |\n| `MC_WIKI_MCP_NAME` | MCP server name | `Minecraft Wiki MCP (stdio)` |\n| `MC_WIKI_MCP_DESCRIPTION` | MCP server description | Auto-generated |\n| `MC_WIKI_LOG_LEVEL` | Log level | `INFO` |\n\n### Command Line Arguments\n\n```bash\nuvx mc-wiki-fetch-mcp --help\n```\n\n| Parameter | Description |\n|-----------|-------------|\n| `--api-url` | Wiki API base URL (overrides environment variable) |\n| `--timeout` | API request timeout (seconds) |\n| `--max-retries` | Maximum retry attempts |\n| `--log-level` | Log level (DEBUG/INFO/WARNING/ERROR) |\n| `--version` | Show version information |\n| `--help` | Show help information |\n\n## Configuration Examples\n\n### Basic Configuration Example\n\n```bash\n# Set environment variables\nexport MC_WIKI_API_BASE_URL=\"http://localhost:3000\"\nexport MC_WIKI_LOG_LEVEL=\"DEBUG\"\n\n# Run server\nuvx mc-wiki-fetch-mcp\n```\n\n### Claude Desktop Advanced Configuration\n\n```json\n{\n \"mcpServers\": {\n \"minecraft-wiki\": {\n \"command\": \"uvx\",\n \"args\": [\n \"mc-wiki-fetch-mcp\",\n \"--api-url\", \"http://localhost:3000\",\n \"--log-level\", \"INFO\"\n ],\n \"env\": {\n \"MC_WIKI_DEFAULT_LIMIT\": \"20\",\n \"MC_WIKI_MAX_BATCH_SIZE\": \"50\"\n }\n }\n }\n}\n```\n\n## Traditional Installation (Developers)\n\nIf you need to modify code or develop:\n\n```bash\n# Clone repository\ngit clone <repository-url>\ncd mc-wiki-fetch-mcp\n\n# Install dependencies\npip install -e .\n\n# Run\nmc-wiki-fetch-mcp\n```\n\n## \ud83d\udee0\ufe0f Available Tools\n\n| Tool Name | Description | Main Parameters |\n|-----------|-------------|-----------------|\n| `search_wiki` | Search Wiki content | `query`, `limit`, `namespaces` |\n| `get_wiki_page` | Get page content | `page_name`, `format`, `use_cache` |\n| `get_wiki_pages_batch` | Batch get pages | `pages`, `format`, `concurrency` |\n| `check_page_exists` | Check page existence | `page_name` |\n| `check_wiki_api_health` | Health check | No parameters |\n\n### Usage Examples\n\n#### Using in Claude Desktop\n\nAfter configuration, you can directly ask in Claude Desktop:\n\n```\nPlease help me search for information about redstone\nGet detailed content of the diamond page\nCheck if the \"redstone circuit\" page exists\nBatch get content for \"diamond\", \"redstone\", and \"enchanting\" pages\n```\n\n## \ud83d\udd27 Advanced Configuration\n\n### Configuration Priority\n\nConfiguration priority order (high to low):\n1. Command line arguments\n2. Environment variables\n3. Default values\n\n### Configuration Parameter Description\n\n| Parameter | Description | Default Value | Optional Values |\n|-----------|-------------|---------------|-----------------|\n| API Base URL | Wiki API service address | `http://mcwiki.rice-awa.top` | Any valid URL |\n| Request Timeout | API request timeout | `30 seconds` | Positive integer (seconds) |\n| Maximum Retries | Failed request retry count | `3 times` | Positive integer |\n| Default Format | Page content output format | `both` | `html`, `markdown`, `both` |\n| Search Limit | Default search result count | `10` | 1-50 |\n| Batch Size | Maximum pages for batch processing | `20` | 1-100 |\n| Concurrency | Maximum concurrent requests | `5` | 1-20 |\n\n### Log Configuration\n\n```bash\n# Different log levels\nMC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp # Detailed debug information\nMC_WIKI_LOG_LEVEL=INFO uvx mc-wiki-fetch-mcp # Basic information\nMC_WIKI_LOG_LEVEL=WARNING uvx mc-wiki-fetch-mcp # Only warnings and errors\nMC_WIKI_LOG_LEVEL=ERROR uvx mc-wiki-fetch-mcp # Only errors\n```\n\n## \ud83d\udc1b Troubleshooting\n\n### Common Issues\n\n#### 1. uvx command not found\n\n**Problem**: `uvx: command not found`\n\n**Solution**:\n```bash\n# Install uv\ncurl -LsSf https://astral.sh/uv/install.sh | sh\n# Or use pip\npip install uv\n```\n\n#### 2. Cannot connect to Wiki API\n\n**Problem**: Tool calls return connection errors\n\n**Solution**:\n1. Check environment variable configuration:\n ```bash\n echo $MC_WIKI_API_BASE_URL\n ```\n2. Test API connection:\n ```bash\n curl http://your-api-url/health\n ```\n3. Enable verbose logging:\n ```bash\n MC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp\n ```\n\n#### 3. Tools not showing in Claude Desktop\n\n**Problem**: After configuration, MCP tools are not visible in Claude Desktop\n\n**Solution**:\n1. Confirm uvx is available:\n ```bash\n uvx mc-wiki-fetch-mcp --version\n ```\n2. Check Claude Desktop logs\n3. Restart Claude Desktop\n\n### Debugging Tips\n\n#### Enable Verbose Logging\n```bash\n# Start server and view detailed logs\nMC_WIKI_LOG_LEVEL=DEBUG uvx mc-wiki-fetch-mcp 2>debug.log\n\n# View logs\ntail -f debug.log\n```\n\n#### Test Configuration\n```bash\n# Test specific configuration\nMC_WIKI_API_BASE_URL=http://localhost:3000 \\\nMC_WIKI_LOG_LEVEL=DEBUG \\\nuvx mc-wiki-fetch-mcp --help\n```\n\n#### Verify Environment Variables\n```bash\n# Check current environment variables\nenv | grep MC_WIKI\n\n# Or check in Python\npython -c \"import os; print({k:v for k,v in os.environ.items() if k.startswith('MC_WIKI')})\"\n```\n\n## \ud83d\udcd6 Related Documentation\n\n- [UVX Packaging Summary](docs/UVX_PACKAGING_SUMMARY.md) - UVX packaging and environment variable configuration\n- [API Documentation](docs/API_DOCUMENTATION.md) - Detailed API interface documentation\n- [Usage Guide](docs/USAGE_GUIDE.md) - In-depth usage tutorial\n- [Project Completion Summary](docs/PROJECT_COMPLETION_SUMMARY.md) - Project development summary\n\n## \ud83e\udd1d Contributing\n\nWelcome to submit Issues and Pull Requests to improve the project!\n\n## \ud83d\udcc4 License\n\nThis project is licensed under the MIT License. See [LICENSE](./LICENSE) file for details.\n\n## \ud83c\udd98 Getting Help\n\nIf you encounter problems or need help:\n\n1. Check the troubleshooting section of this README\n2. Check detailed documentation in the [docs/](docs/) directory\n3. Submit an Issue describing your problem\n4. Check log files for detailed error information\n\n---\n\n**Quick Start Tips**: \n- \ud83d\ude80 **Recommended**: Use `uvx mc-wiki-fetch-mcp` to get started quickly\n- \ud83d\udcbb **Claude Desktop**: Use `uvx` command and environment variables in configuration\n- \u2699\ufe0f **Customize**: Adjust configuration through environment variables or command line arguments\n- \ud83d\udd27 **Development**: Clone repository and use `pip install -e .` for development",
"bugtrack_url": null,
"license": null,
"summary": "A MCP-based Minecraft Wiki backend server providing convenient access to Minecraft Wiki content via stdio",
"version": "0.3.0",
"project_urls": {
"Documentation": "https://github.com/rice-awa/mc-wiki-mcp-pypi/blob/main/README.md",
"Homepage": "https://github.com/rice-awa/mc-wiki-mcp-pypi",
"Issues": "https://github.com/rice-awa/mc-wiki-mcp-pypi/issues",
"Repository": "https://github.com/rice-awa/mc-wiki-mcp-pypi"
},
"split_keywords": [
"api",
" mcp",
" minecraft",
" server",
" wiki"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "b05b504c6bcd22b4077c28974247042f7ae75a627a75012874671946dc4a45aa",
"md5": "2588fb87e13ff60d19580afb2e30fa61",
"sha256": "025adc2c1dead6198ed0cf9267fd462af602ee805f8a7d8491a5aa836c9dc109"
},
"downloads": -1,
"filename": "mc_wiki_fetch_mcp-0.3.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "2588fb87e13ff60d19580afb2e30fa61",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.10",
"size": 9973,
"upload_time": "2025-08-02T12:46:41",
"upload_time_iso_8601": "2025-08-02T12:46:41.643951Z",
"url": "https://files.pythonhosted.org/packages/b0/5b/504c6bcd22b4077c28974247042f7ae75a627a75012874671946dc4a45aa/mc_wiki_fetch_mcp-0.3.0-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "a9516918e4216cfef420a5ea38648624b92d410bf06b0a48d9365b463b2a8d98",
"md5": "ca00adf01a3e41d79a43d1bfda916101",
"sha256": "bfbc286b56dcd929c36b176b1100a211ef1429e9244b3cae57d367010fd1d73d"
},
"downloads": -1,
"filename": "mc_wiki_fetch_mcp-0.3.0.tar.gz",
"has_sig": false,
"md5_digest": "ca00adf01a3e41d79a43d1bfda916101",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.10",
"size": 119805,
"upload_time": "2025-08-02T12:46:43",
"upload_time_iso_8601": "2025-08-02T12:46:43.592214Z",
"url": "https://files.pythonhosted.org/packages/a9/51/6918e4216cfef420a5ea38648624b92d410bf06b0a48d9365b463b2a8d98/mc_wiki_fetch_mcp-0.3.0.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-08-02 12:46:43",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "rice-awa",
"github_project": "mc-wiki-mcp-pypi",
"travis_ci": false,
"coveralls": false,
"github_actions": false,
"requirements": [
{
"name": "asyncio",
"specs": []
},
{
"name": "aiohttp",
"specs": [
[
">=",
"3.8.0"
]
]
},
{
"name": "mcp",
"specs": [
[
">=",
"0.1.0"
]
]
},
{
"name": "pydantic",
"specs": [
[
">=",
"2.0.0"
]
]
},
{
"name": "fastmcp",
"specs": [
[
">=",
"0.1.0"
]
]
},
{
"name": "python-dotenv",
"specs": [
[
">=",
"1.0.0"
]
]
}
],
"lcname": "mc-wiki-fetch-mcp"
}