Loading...
Loading...
Connect to Genfeed.ai to create AI videos, images, articles, and more. Use when "genfeed", "create content", "generate video", "generate image", "publish content" mentioned.
npx skill4agent add genfeedai/skills openclaw-integration{
"mcpServers": {
"genfeed": {
"type": "streamable-http",
"url": "https://mcp.genfeed.ai/mcp",
"headers": {
"Authorization": "Bearer gf_live_YOUR_API_KEY"
}
}
}
}gf_live_xxxAuthorizationAuthorization: Bearer gf_live_xxx| Scope | Permissions |
|---|---|
| List and retrieve content |
| Create and modify content |
| Publish to social platforms |
| View analytics data |
| Create and execute workflows |
| Check credits and usage |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Generate an AI video | | |
| Check video generation progress | | |
| List all videos | | |
| Get video performance metrics | | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Generate an AI article | | |
| Search existing articles | | |
| Retrieve a single article | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Generate an AI image | | |
| List all images | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Create a digital avatar | | |
| List all avatars | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Generate AI music | | |
| List all music tracks | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Publish to social platforms | | |
| List published posts | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Get trending topics | | |
| Get content performance | | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Check remaining credits | ||
| Get usage statistics | |
| Tool | Description | Required Params | Optional Params |
|---|---|---|---|
| Create an automation workflow | | |
| Run a workflow | | |
| Check workflow execution status | | |
| List all workflows | | |
| List available templates |
genfeed generate image "A sunset over mountains" --json
genfeed generate video "Product Demo" --no-wait
genfeed status <id> --json
genfeed publish <contentId> --platforms instagram,twitter--json--no-wait1. create_image({ prompt: "Product hero shot, studio lighting, 8K" })
2. list_images() -- verify it appears
3. publish_content({ contentId: "<imageId>", platforms: ["instagram"] })1. create_video({ title: "Product Launch", description: "60s cinematic intro" })
2. get_video_status({ videoId: "<videoId>" }) -- poll until complete
3. get_video_analytics({ videoId: "<videoId>" })1. get_trending_topics({ category: "tech" })
2. create_article({ topic: "<trending topic>", tone: "professional" })
3. create_image({ prompt: "<article hero image>" })
4. publish_content({ contentId: "<articleId>", platforms: ["twitter", "linkedin"] })1. list_videos({ limit: 5 }) -- find content to publish
2. publish_content({
contentId: "<videoId>",
platforms: ["youtube", "tiktok", "instagram"],
customMessage: "Check out our latest creation!",
scheduleAt: "2026-03-01T10:00:00Z"
})
3. list_posts({ platform: "youtube" }) -- verify publication1. list_workflow_templates() -- browse available templates
2. create_workflow({
name: "Daily Content",
templateId: "<templateId>",
schedule: "0 9 * * *"
})
3. execute_workflow({ workflowId: "<workflowId>" })
4. get_workflow_status({ workflowId: "<workflowId>" }){
"error": "INSUFFICIENT_CREDITS",
"message": "Not enough credits. Required: 10, Available: 3",
"creditsRequired": 10,
"creditsAvailable": 3
}get_credits(){
"error": "RATE_LIMITED",
"message": "Too many requests. Retry after 30 seconds.",
"retryAfter": 30
}retryAfter{
"error": "UNAUTHORIZED",
"message": "Invalid or expired API key"
}{
"error": "GENERATION_FAILED",
"message": "Content generation failed",
"reason": "Content policy violation"
}get_credits()