{"url_pattern":"^https?://creator\\.xiaohongshu\\.com/.*$","site_name":"xiaohongshu","allowed_domains":null,"tools":[{"name":"insert_note","description":"Insert content into Xiaohongshu note editor (must upload images first on creator.xiaohongshu.com/publish/publish)","inputSchema":{"type":"object","properties":{"title":{"type":"string","description":"Note title"},"content":{"type":"string","description":"Note content (plain text)"}},"required":["content"]},"handler":"(params) => {\n  // Set title\n  if (params.title) {\n    const titleInput = document.querySelector('#titleBox') || document.querySelector('#title') || document.querySelector('[placeholder*=\"标题\"]');\n    if (titleInput) {\n      titleInput.value = params.title;\n      titleInput.dispatchEvent(new Event('input', { bubbles: true }));\n    }\n  }\n  // Find content editor\n  const editor = document.querySelector('#descBox') || document.querySelector('#post-textarea') || document.querySelector('.c-input_inner') || document.querySelector('[contenteditable=\"true\"]');\n  if (!editor) {\n    return { success: false, message: 'Editor not found. Please upload images first, then the content editor will appear.' };\n  }\n  if (editor.tagName === 'TEXTAREA' || editor.tagName === 'INPUT') {\n    editor.value = params.content;\n  } else {\n    editor.textContent = params.content;\n  }\n  editor.dispatchEvent(new Event('input', { bubbles: true }));\n  editor.focus();\n  return { success: true, message: 'Content inserted into Xiaohongshu editor' };\n}"},{"name":"open_publish_page","description":"Navigate to Xiaohongshu publish page","inputSchema":{"type":"object","properties":{},"required":null},"handler":"() => {\n  window.location.href = 'https://creator.xiaohongshu.com/publish/publish';\n  return { success: true, message: 'Opening Xiaohongshu publish page...' };\n}"}]}