feat: rename to gitea-mcp-extended and add package publishing workflows
Some checks failed
release-nightly / publish-nightly (push) Failing after 44s
release / goreleaser (push) Failing after 37s
release / publish-packages (push) Has been skipped

Rename the fork from gitea-mcp to gitea-mcp-extended to reflect the
significantly expanded tool coverage (299 vs upstream's 93 tools).

- Rename Go module path and all import references
- Rename binary to gitea-mcp-extended in Makefile, Dockerfile, .gitignore
- Point .goreleaser.yaml gitea_urls to git.lethalbits.com
- Replace release-tag workflow with goreleaser + Generic Package Registry publishing
- Replace release-nightly workflow with cross-platform build + nightly package publishing
- Update CLAUDE.md project description and tool count
This commit is contained in:
Andrew Miller
2026-03-05 13:04:02 -05:00
parent df25d328d1
commit 60f05e5f1e
70 changed files with 337 additions and 348 deletions

View File

@@ -7,8 +7,8 @@ import (
"net/http"
"code.gitea.io/sdk/gitea"
mcpContext "git.lethalbits.com/lethalbits/gitea-mcp/pkg/context"
"git.lethalbits.com/lethalbits/gitea-mcp/pkg/flag"
mcpContext "git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/context"
"git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/flag"
)
func NewClient(token string) (*gitea.Client, error) {

View File

@@ -13,8 +13,8 @@ import (
"strings"
"time"
mcpContext "git.lethalbits.com/lethalbits/gitea-mcp/pkg/context"
"git.lethalbits.com/lethalbits/gitea-mcp/pkg/flag"
mcpContext "git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/context"
"git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/flag"
)
type HTTPError struct {

View File

@@ -4,8 +4,8 @@ import (
"context"
"testing"
mcpContext "git.lethalbits.com/lethalbits/gitea-mcp/pkg/context"
"git.lethalbits.com/lethalbits/gitea-mcp/pkg/flag"
mcpContext "git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/context"
"git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/flag"
)
func TestTokenFromContext(t *testing.T) {

View File

@@ -5,7 +5,7 @@ import (
"sync"
"time"
"git.lethalbits.com/lethalbits/gitea-mcp/pkg/flag"
"git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/flag"
"go.uber.org/zap"
"go.uber.org/zap/zapcore"
"gopkg.in/natefinch/lumberjack.v2"

View File

@@ -4,7 +4,7 @@ import (
"encoding/json"
"fmt"
"git.lethalbits.com/lethalbits/gitea-mcp/pkg/log"
"git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/log"
"github.com/mark3labs/mcp-go/mcp"
)

View File

@@ -1,7 +1,7 @@
package tool
import (
"git.lethalbits.com/lethalbits/gitea-mcp/pkg/flag"
"git.lethalbits.com/lethalbits/gitea-mcp-extended/pkg/flag"
"github.com/mark3labs/mcp-go/server"
)