Crowdin ACTION
Create Project
Creates a new project within Crowdin. See the documentation
- Action
- Writes data
- OAuth
- SDK
- MCP
IMPLEMENTATION
Call this tool
Connect a user's Crowdin account once, then configure and run Create Project 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: "crowdin-create-project",
externalUserId: "{external_user_id}", // any stable ID for this user in your system
configuredProps: {
crowdin: { authProvisionId: "apn_xxxxxxx" },
name: "Project Name",
sourceLanguageId: "Source Language ID",
},
})
console.log(result)curl -X POST https://api.pipedream.com/v1/connect/{project_id}/actions/run \
-H "Content-Type: application/json" \
-H "X-PD-Environment: production" \
-H "Authorization: Bearer {access_token}" \
-d '{
"external_user_id": "{external_user_id}",
"id": "crowdin-create-project",
"configured_props": {
"crowdin": { "authProvisionId": "apn_xxxxxxx" },
"name": "Project Name",
"sourceLanguageId": "Source Language ID"
}
}'// 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": "crowdin",
},
},
},
)
const mcp = new Client({ name: "my-agent", version: "1.0.0" })
await mcp.connect(transport)
const { tools } = await mcp.listTools()
// listTools() hands your model this tool's input schema, so it can
// fill the arguments itself:
const result = await mcp.callTool({
name: "crowdin-create-project",
arguments: {
name: "Project Name",
sourceLanguageId: "Source Language ID",
},
})SCHEMA
Inputs
Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.
| Property | Type | Description |
|---|---|---|
name Project Name | string | The name of the project to be created Required |
sourceLanguageId Source Language ID | string | The language ID of the source language Required Dynamic |
targetLanguageIds Target Language IDs | string[] | Array of target language IDs Optional Dynamic |
identifier Identifier | string | A custom identifier for the project Optional |
visibility Visibility | string | Defines how users can join the project. Optional |
languageAccessPolicy Language Access Policy | string | Defines access to project languages. Optional |
cname Custom Domain Name | string | Custom domain name for the project. Optional |
description Project Description | string | The description of the project. Optional |
tagsDetection Tags Detection | string | The type of the tags detection. Optional |
isMtAllowed Allow Machine Translation | boolean | Allows machine translations to be visible for translators. Default is true. Optional |
taskBasedAccessControl Task Based Access Control | boolean | Allow project members to work with tasks they're assigned to. Default is false. Optional |
autoSubstitution Auto Substitution | boolean | Allows auto-substitution. Default is true. Optional |
autoTranslateDialects Auto Translate Dialects | boolean | Automatically fill in regional dialects. Default is false. Optional |
publicDownloads Public Downloads | boolean | Allows translators to download source files. Default is true. Optional |
hiddenStringsProofreadersAccess Hidden Strings Proofreaders Access | boolean | Allows proofreaders to work with hidden strings. Default is true. Optional |
useGlobalTm Use Global Translation Memory | boolean | If true, machine translations from connected MT engines will appear as suggestions. Default is true. Optional |
showTmSuggestionsDialects Show TM Suggestions for Dialects | boolean | Show primary language TM suggestions for dialects if there are no dialect-specific ones. Default is true. Optional |
skipUntranslatedStrings Skip Untranslated Strings | boolean | Defines whether to skip untranslated strings. Optional |
exportApprovedOnly Export Approved Only | boolean | Defines whether to export only approved strings. Optional |
qaCheckIsActive QA Check Is Active | boolean | If true, QA checks are active. Default is true. Optional |
type Type | string | Defines the project type. To create a file-based project, use 0. 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
- crowdin-create-project
- Version
- 0.0.2
- App
- Crowdin
- Authentication
- OAuth
- Read-only
- No
- Destructive
- No
- Open world
- Yes
- Source
- View on GitHub ↗