AI 发布AI publishing
让 AI 在对话里直接返回 FolioDrop 链接。Let AI return a FolioDrop link inside the conversation.
接入方式公开可见;只有用于发布到你作品集的私有 token 需要登录后生成。ChatGPT 可走授权页,Codex 可用 FolioDrop publisher skill,开源 agent 可用 MCP,豆包/扣子可用 OpenAPI。The setup is public; only the private token that publishes into your folio requires sign-in. ChatGPT can use OAuth, Codex can use the FolioDrop publisher skill, open-source agents can use MCP, and Doubao/Coze can use OpenAPI.
发给 AgentSend to your agent
复制这一段,让 Agent 直接接入。Copy this so your agent can connect.
这是一段完整接入说明,包含 MCP 地址、鉴权 header、工具能力和发布规则。未生成 token 时会保留占位符。This complete setup brief includes the MCP URL, auth header, tools, and publishing rules. Before token creation, it keeps a placeholder.
Connect to FolioDrop so you can publish the HTML work directly and return a share URL in this conversation. Remote MCP: - URL: https://foliodrop.app/mcp - Transport: Streamable HTTP MCP - Header: Authorization: Bearer <FOLIODROP_AI_TOKEN> - Public setup descriptor: https://foliodrop.app/api/ai/mcp-config.json Available tools: - publish_work: publish one complete single-file HTML document and return a FolioDrop share URL. - list_my_works: list works in the connected FolioDrop folio. - delete_work: delete a work from the connected FolioDrop folio. Publishing rules: - Publish into the connected FolioDrop account, not an anonymous session. - Default to public links. - Only use accessMode: "key" when I explicitly ask for an access key. - The html argument must be a complete document with <!doctype html> or an <html> tag. - Inline CSS and JavaScript when possible. Do not depend on local files. If your agent host cannot connect remote MCP with bearer headers, use the OpenAPI tool surface instead: https://foliodrop.app/api/ai/openapi.json
ChatGPT 私有连接ChatGPT private connection
适合在 ChatGPT 对话里让作品直接发布到你的 FolioDrop 作品集。连接时使用授权页,不需要把 token 粘贴进公开对话。Use this when ChatGPT should publish directly into your FolioDrop folio. The connection uses an authorization page, so you do not paste a token into public chat.
- Remote MCP URL:https://foliodrop.app/mcpRemote MCP URL: https://foliodrop.app/mcp
- 授权后发布结果进入你的作品集。After authorization, published works go into your folio.
- 默认公开链接;密钥访问必须由你明确要求。Public links are the default; access keys require an explicit request.
Codex publisher skillCodex publisher skill
适合让 Codex 生成完整单文件 HTML、校验 FolioDrop 发布约束,并调用 MCP/OpenAPI 返回真实链接。Use this when Codex should create complete single-file HTML, validate the FolioDrop publishing contract, and call MCP/OpenAPI to return a real URL.
- 本体不内置模板生成;skill 负责生成,FolioDrop 负责发布和归属。FolioDrop core does not own template generation; the skill creates, FolioDrop publishes and owns.
- 本地技能目录:skills/foliodrop-publisherLocal skill folder: skills/foliodrop-publisher
- 没有安装 skill 时,复制上方 Agent brief 也可接入。If the skill is not installed, copy the agent brief above instead.
豆包 / Coze-style OpenAPIDoubao / Coze-style OpenAPI
对支持导入 OpenAPI 或自定义 HTTP 工具的平台,使用 FolioDrop 的 OpenAPI 描述文件和 bearer token。For platforms that import OpenAPI or custom HTTP tools, use FolioDrop's OpenAPI description and a bearer token.
- OpenAPI:https://foliodrop.app/api/ai/openapi.jsonOpenAPI: https://foliodrop.app/api/ai/openapi.json
- 默认公开链接;需要密钥时让 AI 显式设置 accessMode 为 key。Public links are the default; ask the AI to set accessMode to key only when needed.
- 发布结果会进入你的作品集,而不是匿名临时链接。Published works go into your folio, not an anonymous temporary session.
开源 / 自托管 agentOpen-source and self-hosted agents
OpenClaw、Hermes Agent、WorkBuddy 等 agent,只要支持远程 MCP URL 和自定义请求头,就可以使用同一套公开配置。OpenClaw, Hermes Agent, WorkBuddy, and similar clients can use the same public setup when they support a remote MCP URL and custom headers.
- MCP URL:https://foliodrop.app/mcpMCP URL: https://foliodrop.app/mcp
- Header:Authorization: Bearer <你的 FolioDrop AI token>Header: Authorization: Bearer <your FolioDrop AI token>
- 公开配置:https://foliodrop.app/api/ai/mcp-config.jsonPublic config: https://foliodrop.app/api/ai/mcp-config.json
连接凭证Connection token
先登录,再创建私有 token。Sign in, then create a private token.
OpenAPI 工具和通用 MCP 客户端都可以使用这个 token。ChatGPT 私有连接可走授权页;其他 agent 通常把它放在 Authorization bearer header。OpenAPI tools and generic MCP clients can use this token. ChatGPT private connections can use the authorization page; other agents usually place it in the Authorization bearer header.
给 AI 的生成要求Instruction for AI
让 AI 输出可直接发布的 HTML。Ask AI for publish-ready HTML.
Create one complete single-file HTML work for FolioDrop. Requirements: - Output a full HTML document with <!doctype html>, <html>, <head>, and <body>. - Inline CSS and JavaScript. Do not depend on local files. - Use public HTTPS URLs for any external image or font. - When the work is ready, call FolioDrop publish_work with the title and html. - Use public access unless I explicitly ask for an access key.