Pipedream · Capability

Pipedream API - OAuth

Pipedream API - OAuth. 1 operations. Self-contained Naftiko capability covering one Pipedream business surface.

Pipedream API - OAuth is a Naftiko capability published by Pipedream, one of 16 capabilities the APIs.io network indexes for this provider. It bundles 1 operation across the POST method rooted at /v1/oauth/token.

The capability includes 1 state-changing operation. Lead operation: Create OAuth Token. Can be deployed as a REST endpoint, MCP tool, or Agent Skill via Naftiko.

Tagged areas include Pipedream and OAuth.

Run with Naftiko PipedreamOAuth

What You Can Do

POST
Createoauthtoken — Create OAuth Token
/v1/oauth/token

MCP Tools

createoauthtoken

Create OAuth Token

Capability Spec

pipedream-oauth.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Pipedream API - OAuth
  description: Pipedream API - OAuth. 1 operations. Self-contained Naftiko capability covering one Pipedream business surface.
  tags:
  - Pipedream
  - OAuth
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    PIPEDREAM_ACCESS_TOKEN: PIPEDREAM_ACCESS_TOKEN
capability:
  consumes:
  - type: http
    namespace: pipedream-oauth
    baseUri: https://api.pipedream.com
    description: Pipedream API - OAuth business capability. Self-contained, no shared references.
    resources:
    - name: v1-oauth-token
      path: /v1/oauth/token
      operations:
      - name: createoauthtoken
        method: POST
        description: Create OAuth Token
        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.PIPEDREAM_ACCESS_TOKEN}}'
  exposes:
  - type: rest
    namespace: pipedream-oauth-rest
    port: 8080
    description: REST adapter for Pipedream API - OAuth. One resource per consumed operation.
    resources:
    - path: /v1/oauth/token
      name: v1-oauth-token
      description: REST surface for v1-oauth-token.
      operations:
      - method: POST
        name: createoauthtoken
        description: Create OAuth Token
        call: pipedream-oauth.createoauthtoken
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: pipedream-oauth-mcp
    port: 9090
    transport: http
    description: MCP adapter for Pipedream API - OAuth. One tool per consumed operation.
    tools:
    - name: createoauthtoken
      description: Create OAuth Token
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: pipedream-oauth.createoauthtoken
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.