View as Markdown
Kintone icon

Kintone ACTION

Add Comment

Adds a comment to a record in a Kintone App. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Kintone account once, then configure and run Add Comment from your backend or agent.

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 result = await pd.actions.run({
  id: "kintone-add-comment",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    kintone: { authProvisionId: "apn_xxxxxxx" },
    appId: 10,
    recordId: "Record ID",
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

Add Comment inputs
Property Type Description
appId App ID integer
The Kintone App ID
Required Dynamic
recordId Record ID string
The ID of the record
Required Dynamic
commentText Comment Text string
The comment text (max 65,535 characters)
Required
mentions Mentions object
Optional array of mentions. Example: [{"code": "user_code", "type": "USER"}] (USER, GROUP, or ORGANIZATION)
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
kintone-add-comment
Version
0.0.1
App
Kintone
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes