Gitea icon

CONNECT APP

Build with Gitea

Community managed lightweight code hosting solution written in Go

Developer Tools

  • API key

MCP

Give your agent Gitea tools

Every Gitea action is exposed as an MCP tool on Pipedream's remote server. Point a client at it with your end user's ID and Connect resolves that user's Gitea account for each tool call — you store no tokens.

// accessToken: mint a short-lived token with the Connect SDK — see the MCP guide
const transport = new StreamableHTTPClientTransport(
  new URL("https://remote.mcp.pipedream.net/v3"),
  {
    requestInit: {
      headers: {
        Authorization: `Bearer ${accessToken}`,
        "x-pd-project-id": "{project_id}",
        "x-pd-environment": "production",
        "x-pd-external-user-id": "{external_user_id}", // any stable ID for this user in your system
        "x-pd-app-slug": "gitea",
      },
    },
  },
)

const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)

const { tools } = await mcp.listTools()
// Every tool arrives with its own input schema — run one with mcp.callTool().

API PROXY

Call the Gitea API directly

For an endpoint with no pre-built tool, the Connect proxy forwards your request to the Gitea API with the connected user's credentials attached. You store no tokens and write no refresh logic.

const resp = await pd.proxy.get({
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  accountId: "apn_xxxxxxx",
  url: "https://api.example.com/v1/me",
})

// Any allowed Gitea endpoint works here. Pipedream attaches the
// connected account's credentials to the outgoing request.

SDK

Run Gitea actions from your backend

Connect a user's Gitea account once, then discover and run its tools on their behalf from your own code — TypeScript, Python, or plain HTTP.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const tools = await pd.components.list({
  app: "gitea",
  componentType: "action",
})

TOOLS

Gitea actions

On-demand operations your product or agent can configure and run on behalf of a connected user.

No Gitea actions are available yet.

EVENTS

Gitea triggers

Event sources your backend can deploy for users and receive through a webhook.

No Gitea triggers are available yet.

MULTI-APP

Use Gitea with other popular apps

Most products don't stop at one integration. Pair Gitea with the other apps your users rely on, and ship use cases that span both.

Redmine icon Redmine Free and open-source project management and issue tracking tool. OpenAI (ChatGPT) icon OpenAI (ChatGPT) OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper. Semaphore icon Semaphore Extend your messaging reach with the fastest SMS API. Semaphore lets you send SMS blast with a single line of code. No complicated setup, no dealing with telecom protocols and procedures Jira icon Jira Jira is the #1 agile project management tool used by teams to plan, track, release, and support great software with confidence Slack icon Slack Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof. Azure DevOps icon Azure DevOps Plan smarter, collaborate better, and ship faster with a set of modern dev services Linear (API key) icon Linear (API key) Linear helps streamline software projects, sprints, tasks, and bug tracking. It's built for high-performance teams. Microsoft Teams icon Microsoft Teams Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place. CircleCI icon CircleCI Continuous integration and delivery platform Ollama icon Ollama Get up and running with large language models. Asana icon Asana Work anytime, anywhere with Asana. Keep remote and distributed teams, and your entire organization, focused on their goals, projects, and tasks with Asana. GitHub icon GitHub Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.

REFERENCE

App details

Reference metadata for the Gitea connector in the Pipedream registry.

App slug
gitea
Authentication
API key
Categories
Developer Tools
Actions
0
Triggers
0
API proxy
Available