G

Gitea

Read repositories, PRs and issues on Gitea.

·No reviews yet
Repo
Share:

About

Auto-generated

Gitea is a Model Context Protocol server in the Developer Tools category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

list_resources
Enumerate resources exposed by this MCP
get_resource
Fetch a resource by ID
invoke
Invoke the primary action of this MCP

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about Gitea.

What does the Gitea MCP enable?
The Gitea MCP allows clients to read data from Gitea repositories, including pull requests and issues. It integrates self-hosted Git services with various MCP clients.
How do I install the Gitea MCP in a client like Cline?
Installation in Cline typically involves adding the MCP's slug, 'gitea', through the client's interface. Specific steps depend on the Cline version and configuration.
Does the Gitea MCP require an API key for authentication?
Yes, authentication for the Gitea MCP is done via an API key. You will need to generate an API key within your Gitea instance and provide it to the MCP client.
What are the primary capabilities of this Gitea MCP?
The primary capabilities include reading information about repositories, pull requests, and issues from a Gitea instance. It is designed for interacting with Gitea's core content.
Is there a cost associated with using the Gitea MCP?
The Gitea MCP itself is provided under an open-source license. The cost for the underlying Gitea instance depends on your deployment and hosting choices.
What is a key prerequisite for using the Gitea MCP?
A key prerequisite is a running Gitea instance that is accessible from where the MCP client is being used. It is designed for self-hosted Gitea deployments.

Install Gitea

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "gitea": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gitea"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "gitea": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gitea"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "gitea": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-gitea"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.