Initial commit: MCP Hub Community Edition v3.0.0

Community edition generated from private repo via sync pipeline.
Includes 9 plugins (WordPress, WooCommerce, WP Advanced, Gitea, n8n,
Supabase, OpenPanel, Appwrite, Directus) with ~587 tools.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
airano
2026-02-17 08:34:44 +03:30
commit cf62e65c55
237 changed files with 87596 additions and 0 deletions

94
.github/ISSUE_TEMPLATE/bug_report.yml vendored Normal file
View File

@@ -0,0 +1,94 @@
name: Bug Report
description: Report a bug or unexpected behavior
labels: ["bug"]
body:
- type: markdown
attributes:
value: |
Thanks for reporting a bug! Please fill out the details below.
- type: textarea
id: description
attributes:
label: Description
description: What happened? What did you expect to happen?
placeholder: A clear description of the bug...
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: How can we reproduce this issue?
placeholder: |
1. Configure site with ...
2. Run tool ...
3. See error ...
validations:
required: true
- type: dropdown
id: plugin
attributes:
label: Plugin Type
description: Which plugin is affected?
options:
- WordPress
- WooCommerce
- WordPress Advanced
- Gitea
- n8n
- Supabase
- OpenPanel
- Appwrite
- Directus
- System / Core
- Dashboard
- Other
validations:
required: true
- type: dropdown
id: transport
attributes:
label: Transport
description: How are you running the server?
options:
- SSE (HTTP)
- Streamable HTTP
- stdio
- Docker
validations:
required: true
- type: input
id: mcp-client
attributes:
label: MCP Client
description: Which AI client are you using?
placeholder: "e.g., Claude Desktop, Cursor, VS Code Copilot, ChatGPT"
- type: input
id: version
attributes:
label: Version
description: MCP Hub version or commit hash
placeholder: "e.g., 3.0.0 or abc1234"
- type: textarea
id: logs
attributes:
label: Relevant Logs
description: Paste any relevant error messages or logs
render: shell
- type: textarea
id: environment
attributes:
label: Environment
description: OS, Python version, Docker version if applicable
placeholder: |
- OS: Ubuntu 22.04
- Python: 3.12.1
- Docker: 24.0.7

View File

@@ -0,0 +1,55 @@
name: Feature Request
description: Suggest a new feature or improvement
labels: ["enhancement"]
body:
- type: markdown
attributes:
value: |
Thanks for your feature suggestion! Please describe what you'd like to see.
- type: textarea
id: problem
attributes:
label: Problem or Use Case
description: What problem does this solve? What use case does it enable?
placeholder: "I'm trying to ... but currently ..."
validations:
required: true
- type: textarea
id: solution
attributes:
label: Proposed Solution
description: How would you like this to work?
placeholder: "It would be great if ..."
validations:
required: true
- type: dropdown
id: area
attributes:
label: Area
description: Which part of the project does this affect?
options:
- New Plugin
- Existing Plugin Enhancement
- Dashboard / UI
- Authentication / Security
- Performance
- Documentation
- Developer Experience
- Other
validations:
required: true
- type: textarea
id: alternatives
attributes:
label: Alternatives Considered
description: Have you considered any workarounds or alternatives?
- type: textarea
id: context
attributes:
label: Additional Context
description: Any other context, screenshots, or examples?

82
.github/workflows/ci.yml vendored Normal file
View File

@@ -0,0 +1,82 @@
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
name: Test (Python ${{ matrix.python-version }})
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Cache pip packages
uses: actions/cache@v4
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('pyproject.toml') }}
restore-keys: |
${{ runner.os }}-pip-${{ matrix.python-version }}-
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --tb=short
- name: Run tests with coverage
if: matrix.python-version == '3.12'
run: pytest tests/ --cov=core --cov=plugins --cov-report=xml --cov-report=term-missing -q
- name: Upload coverage
if: matrix.python-version == '3.12'
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: coverage.xml
lint:
name: Lint & Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Check formatting (Black)
run: black --check .
- name: Lint (Ruff)
run: ruff check .
docker:
name: Docker Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build Docker image
run: docker build -t mcphub:test .
- name: Verify image was built
run: docker image inspect mcphub:test > /dev/null

104
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,104 @@
name: Release
on:
push:
tags:
- "v*"
permissions:
contents: write
jobs:
test:
name: Test before release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install dependencies
run: pip install -e ".[dev]"
- name: Run tests
run: pytest tests/ -v --tb=short
- name: Check formatting
run: black --check .
- name: Lint
run: ruff check .
pypi:
name: Publish to PyPI
needs: test
runs-on: ubuntu-latest
environment: release
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install build tools
run: pip install build twine
- name: Build package
run: python -m build
- name: Publish to PyPI
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: twine upload dist/*
docker:
name: Publish to Docker Hub
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Extract version from tag
id: version
run: echo "VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_OUTPUT
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: |
mcphub/mcphub:latest
mcphub/mcphub:${{ steps.version.outputs.VERSION }}
platforms: linux/amd64,linux/arm64
github-release:
name: Create GitHub Release
needs: [pypi, docker]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Create Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true