For Agents
Manage repositories, pull requests, issues, GitHub Actions workflows, code-scanning alerts, and Dependabot updates across 1,099 endpoints of the GitHub REST API.
Get started with GitHub v3 REST API in minutes using your preferred integration method.
# Add to your MCP client config (Claude Desktop, Cursor, Windsurf)
{
"jentic": {
"url": "https://api.jentic.com/mcp",
"auth": "oauth"
}
}
# Then ask your agent:
"open a github pull request"
# → Jentic returns the GET /events tool with parameter schema, agent executes.What an agent can do with GitHub v3 REST API API.
Open, review, and merge a pull request on a repository
Create, label, assign, and close an issue
Trigger and inspect a GitHub Actions workflow run
List and resolve code-scanning and Dependabot alerts on a repository
Manage repository content — read files, commit changes, and create branches
GET STARTED
Use for: Open a pull request from feature-branch to main, I need to create a GitHub issue for a bug a user reported, Trigger a GitHub Actions workflow run on the main branch, Find all open Dependabot alerts on this repository
Not supported: Does not handle GitHub web UI rendering, GitHub Pages content publishing, or GitHub Marketplace billing administration — use for source-control, pull request, issue, Actions, and security-alert operations only.
Jentic publishes the only available OpenAPI document for GitHub v3 REST API, keeping it validated and agent-ready.
Jentic publishes the only available OpenAPI specification for GitHub v3 REST API, keeping it validated and agent-ready. The GitHub REST API is the developer-tools surface for the world's largest source-control and software collaboration platform — repositories, branches, pull requests, issues, code reviews, GitHub Actions workflows, security advisories, packages, and Apps. With 1,099 endpoints across themes including actions, billing, checks, code-scanning, dependabot, and dependency-graph, it powers most software development automation in use today.
Install and configure a GitHub App on a repository or organisation
List security advisories and dependency-graph data for a repository
Patterns agents use GitHub v3 REST API API for, with concrete tasks.
★ Automated PR and Issue Workflows
Drive end-to-end pull request and issue automation: open PRs from agent-generated patches, request reviews, wait for required checks, and merge when green. The same surface lets bots triage incoming issues by labelling, assigning, and closing duplicates. The 1,099-endpoint API covers every step without scraping the GitHub web UI.
POST /repos/{owner}/{repo}/pulls to open a PR, then POST /repos/{owner}/{repo}/pulls/{pull_number}/merge once required checks pass
CI/CD and Workflow Orchestration
Trigger GitHub Actions workflows externally and stream their results into deployment dashboards. The actions endpoints support dispatching workflow_dispatch events, polling workflow runs, listing jobs, and downloading artifacts — enough to integrate Actions with non-GitHub CI/CD systems or to build a meta-orchestrator across many repositories.
POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches with the target ref and inputs to start a workflow run
Security and Supply-Chain Monitoring
Aggregate code-scanning alerts, Dependabot security updates, and advisory data across many repositories into a single security dashboard. The dedicated code-scanning, dependabot, and dependency-graph endpoints expose alerts and SBOM-style data so security teams can track and prioritise without logging into each repository.
GET /repos/{owner}/{repo}/dependabot/alerts and GET /repos/{owner}/{repo}/code-scanning/alerts, aggregate by severity, and surface the open criticals
AI Coding Agents via Jentic
AI coding agents that propose patches, review PRs, or triage issues call GitHub through Jentic. Jentic stores the bearer token (PAT, fine-grained PAT, or GitHub App installation token), exposes the most-used operations as discoverable tools, and lets the agent search by intent rather than navigating the 1,099-endpoint surface.
Search Jentic for 'open a github pull request', load the POST /repos/{owner}/{repo}/pulls schema, and execute with title, head, base, and body to create the PR
1099 endpoints — jentic publishes the only available openapi specification for github v3 rest api, keeping it validated and agent-ready.
METHOD
PATH
DESCRIPTION
/repos/{owner}/{repo}
Get repository metadata
/repos/{owner}/{repo}/pulls
Open a pull request
/repos/{owner}/{repo}/issues
Create an issue
/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
Trigger a workflow_dispatch event
/repos/{owner}/{repo}/dependabot/alerts
List Dependabot alerts
/repos/{owner}/{repo}/code-scanning/alerts
List code-scanning alerts
/app/installations/{installation_id}/access_tokens
Create an installation access token for a GitHub App
/repos/{owner}/{repo}
Get repository metadata
/repos/{owner}/{repo}/pulls
Open a pull request
/repos/{owner}/{repo}/issues
Create an issue
/repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches
Trigger a workflow_dispatch event
/repos/{owner}/{repo}/dependabot/alerts
List Dependabot alerts
Three things that make agents converge on Jentic-routed access.
Credential isolation
GitHub bearer tokens (PATs, OAuth, or GitHub App installation tokens) are stored encrypted in the Jentic vault (MAXsystem) and injected into the Authorization header at execution. Agents never see the raw token.
Intent-based discovery
With 1,099 endpoints, search-by-intent is essential. Agents search Jentic for 'open a github pull request' or 'list dependabot alerts' and Jentic returns the right operation with its input schema, removing the need to navigate the GitHub REST docs.
Time to first call
Direct GitHub integration: 1-3 days to handle auth modes, pagination, and error retries across the operations a project actually uses. Through Jentic: under 1 hour — search, load schema, execute.
Alternatives and complements available in the Jentic catalogue.
GitLab
Source control plus integrated CI/CD with a single self-hostable platform
Choose GitLab when the project is hosted on GitLab or needs the integrated CI/CD pipelines and registry in one platform; choose GitHub when the project lives on GitHub or benefits from the broader ecosystem of integrations.
Courier
Notification orchestration that routes GitHub events into email, SMS, and chat channels
Use Courier alongside GitHub when an agent needs to fan out PR review requests or workflow failure alerts beyond Slack into email or SMS.
Slack
Team chat for routing GitHub PR, issue, and Actions notifications to engineers
Use Slack alongside GitHub when an agent needs to post PR review requests, issue triage updates, or workflow failure alerts into engineering channels.
Specific to using GitHub v3 REST API API through Jentic.
Why is there no official OpenAPI spec for GitHub v3 REST API?
GitHub publishes an OpenAPI description that requires substantial post-processing to be agent-usable. Jentic generates and maintains this spec so that AI agents and developers can call GitHub v3 REST API via structured tooling. It is validated against the live API and kept up to date. Get started at https://app.jentic.com/sign-up.
What authentication does the GitHub REST API use?
The GitHub REST API uses bearer tokens — personal access tokens (classic or fine-grained), OAuth tokens, or GitHub App installation access tokens — sent in the Authorization header. Through Jentic, the chosen token is stored in the encrypted vault and injected at request time.
Can I open a pull request and merge it through this API?
Yes. POST /repos/{owner}/{repo}/pulls opens the PR and POST /repos/{owner}/{repo}/pulls/{pull_number}/merge merges it once required checks pass. Reviews, comments, and re-requests are all available under /repos/{owner}/{repo}/pulls/{pull_number}/.
How do I trigger a GitHub Actions workflow externally?
Call POST /repos/{owner}/{repo}/actions/workflows/{workflow_id}/dispatches with the ref to run against and any inputs the workflow declares. Then poll GET /repos/{owner}/{repo}/actions/runs to follow the run to completion.
How do I open a GitHub PR through Jentic?
Run pip install jentic, then search 'open a github pull request'. Jentic returns the POST /repos/{owner}/{repo}/pulls operation with its schema. Execute with title, head, base, and body; Jentic handles the bearer token in the Authorization header.
What are the rate limits for the GitHub REST API?
Authenticated requests get 5,000 requests per hour per user (or per installation token), with 15,000 per hour for GitHub Apps installed on Enterprise organisations. Search endpoints have stricter per-minute limits. Inspect the X-RateLimit-Remaining header on every response to track usage.
/repos/{owner}/{repo}/code-scanning/alerts
List code-scanning alerts
/app/installations/{installation_id}/access_tokens
Create an installation access token for a GitHub App