set_api_keys
Configure OpenAI and YouTube API keys to enable automated LinkedIn post drafts generation from YouTube video transcripts using the LinkedIn Post Generator MCP server.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
openaiApiKey | Yes | Your OpenAI API key | |
youtubeApiKey | No | Your YouTube API key (optional) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"openaiApiKey": {
"description": "Your OpenAI API key",
"minLength": 1,
"type": "string"
},
"youtubeApiKey": {
"description": "Your YouTube API key (optional)",
"type": "string"
}
},
"required": [
"openaiApiKey"
],
"type": "object"
}