GitHub · Capability

GitHub Projects API — Create

GitHub Projects API — Create. 5 operations. Lead operation: GitHub Create an Organization Project. Self-contained Naftiko capability covering one Github business surface.

Run with Naftiko GithubCreate

What You Can Do

POST
Createanorganizationproject — GitHub Create an Organization Project
/v1/orgs/{org}/projects
POST
Createprojectcard — GitHub Create Project Card
/v1/projects/columns/{column-id}/cards
POST
Createprojectcolumn — GitHub Create Project Column
/v1/projects/{project-id}/columns
POST
Createrepositoryproject — GitHub Create Repository Project
/v1/repos/{owner}/{repo}/projects
POST
Createuserproject — GitHub Create User Project
/v1/user/projects

MCP Tools

github-create-organization-project

GitHub Create an Organization Project

github-create-project-card

GitHub Create Project Card

github-create-project-column

GitHub Create Project Column

github-create-repository-project

GitHub Create Repository Project

github-create-user-project

GitHub Create User Project

Capability Spec

projects-create.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: GitHub Projects API — Create
  description: 'GitHub Projects API — Create. 5 operations. Lead operation: GitHub Create an Organization Project. Self-contained
    Naftiko capability covering one Github business surface.'
  tags:
  - Github
  - Create
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    GITHUB_API_KEY: GITHUB_API_KEY
capability:
  consumes:
  - type: http
    namespace: projects-create
    baseUri: ''
    description: GitHub Projects API — Create business capability. Self-contained, no shared references.
    resources:
    - name: orgs-org-projects
      path: /orgs/{org}/projects
      operations:
      - name: createanorganizationproject
        method: POST
        description: GitHub Create an Organization Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-columns-column_id-cards
      path: /projects/columns/{column_id}/cards
      operations:
      - name: createprojectcard
        method: POST
        description: GitHub Create Project Card
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: projects-project_id-columns
      path: /projects/{project_id}/columns
      operations:
      - name: createprojectcolumn
        method: POST
        description: GitHub Create Project Column
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: repos-owner-repo-projects
      path: /repos/{owner}/{repo}/projects
      operations:
      - name: createrepositoryproject
        method: POST
        description: GitHub Create Repository Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: user-projects
      path: /user/projects
      operations:
      - name: createuserproject
        method: POST
        description: GitHub Create User Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.GITHUB_API_KEY}}'
  exposes:
  - type: rest
    namespace: projects-create-rest
    port: 8080
    description: REST adapter for GitHub Projects API — Create. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/orgs/{org}/projects
      name: orgs-org-projects
      description: REST surface for orgs-org-projects.
      operations:
      - method: POST
        name: createanorganizationproject
        description: GitHub Create an Organization Project
        call: projects-create.createanorganizationproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/columns/{column-id}/cards
      name: projects-columns-column-id-cards
      description: REST surface for projects-columns-column_id-cards.
      operations:
      - method: POST
        name: createprojectcard
        description: GitHub Create Project Card
        call: projects-create.createprojectcard
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{project-id}/columns
      name: projects-project-id-columns
      description: REST surface for projects-project_id-columns.
      operations:
      - method: POST
        name: createprojectcolumn
        description: GitHub Create Project Column
        call: projects-create.createprojectcolumn
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/repos/{owner}/{repo}/projects
      name: repos-owner-repo-projects
      description: REST surface for repos-owner-repo-projects.
      operations:
      - method: POST
        name: createrepositoryproject
        description: GitHub Create Repository Project
        call: projects-create.createrepositoryproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/user/projects
      name: user-projects
      description: REST surface for user-projects.
      operations:
      - method: POST
        name: createuserproject
        description: GitHub Create User Project
        call: projects-create.createuserproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: projects-create-mcp
    port: 9090
    transport: http
    description: MCP adapter for GitHub Projects API — Create. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: github-create-organization-project
      description: GitHub Create an Organization Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: projects-create.createanorganizationproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-project-card
      description: GitHub Create Project Card
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: projects-create.createprojectcard
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-project-column
      description: GitHub Create Project Column
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: projects-create.createprojectcolumn
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-repository-project
      description: GitHub Create Repository Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: projects-create.createrepositoryproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: github-create-user-project
      description: GitHub Create User Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: projects-create.createuserproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.