> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tiro.ooo/llms.txt
> Use this file to discover all available pages before exploring further.

# 도구

> Tiro 서버가 노출하는 모든 MCP 도구.

export const ToolTable = ({category}) => {
  const allTools = [{
    name: 'list_notes',
    category: 'Notes & Content',
    description: 'List notes by filter and optional keyword.',
    params: 'query?, pagination?, filter?'
  }, {
    name: 'search_notes',
    category: 'Notes & Content',
    description: 'Search notes by keyword and return primary documents.',
    params: 'keyword, pagination?, filter?'
  }, {
    name: 'get_note',
    category: 'Notes & Content',
    description: 'Get note metadata with optional include: [summary, transcript, documents].',
    params: 'noteGuid, include?'
  }, {
    name: 'get_note_transcript',
    category: 'Notes & Content',
    description: 'Get the full transcript with timestamps.',
    params: 'noteGuid'
  }, {
    name: 'update_note',
    category: 'Notes & Content',
    description: 'Update a note\'s title.',
    params: 'noteGuid, title'
  }, {
    name: 'list_document_templates',
    category: 'Notes & Content',
    description: 'List available document templates.',
    params: '—'
  }, {
    name: 'get_document_template',
    category: 'Notes & Content',
    description: 'Get a single document template.',
    params: 'templateId'
  }, {
    name: 'search_private_folders',
    category: 'Sharing & Organization',
    description: 'Search private folders by name (case-insensitive).',
    params: 'keyword?, cursor?, size?'
  }, {
    name: 'search_team_folders',
    category: 'Sharing & Organization',
    description: 'Search team folders by name (case-insensitive).',
    params: 'keyword?, cursor?, size?'
  }, {
    name: 'get_note_folders',
    category: 'Sharing & Organization',
    description: 'List the folders a note belongs to.',
    params: 'noteGuid'
  }, {
    name: 'update_folder',
    category: 'Sharing & Organization',
    description: 'Update a folder\'s title, description, or color.',
    params: 'folderId, title?, description?, color?'
  }, {
    name: 'move_folder',
    category: 'Sharing & Organization',
    description: 'Move a folder under a new parent or to the workspace root.',
    params: 'folderId, newParentId?'
  }, {
    name: 'reorder_folders',
    category: 'Sharing & Organization',
    description: 'Reorder sibling folders.',
    params: 'orderedFolderIds'
  }, {
    name: 'get_share_link',
    category: 'Sharing & Organization',
    description: 'Retrieve a note\'s share link (read-only).',
    params: 'noteGuid, password?'
  }, {
    name: 'search_wiki',
    category: 'Wiki',
    description: 'Search the workspace wiki by page name.',
    params: 'keyword, workspaceGuid?'
  }, {
    name: 'get_wiki_page',
    category: 'Wiki',
    description: 'Read a wiki page by id.',
    params: 'pageGuid, workspaceGuid?'
  }, {
    name: 'list_wiki_mentions',
    category: 'Wiki',
    description: 'List notes that mention a wiki page.',
    params: 'pageGuid, cursor?, workspaceGuid?'
  }, {
    name: 'get_wiki_graph',
    category: 'Wiki',
    description: 'Traverse the wiki knowledge graph.',
    params: 'mode, pageGuid?, workspaceGuid?'
  }, {
    name: 'list_workspaces',
    category: 'Wiki',
    description: 'List accessible workspaces and their wiki status.',
    params: '—'
  }, {
    name: 'auth_status',
    category: 'Authentication',
    description: 'Check authentication status and granted scopes.',
    params: '—'
  }];
  const filtered = category ? allTools.filter(t => t.category === category) : allTools;
  return <table className="tiro-tool-table">
      <thead>
        <tr><th>Tool</th><th>Description</th><th>Params</th></tr>
      </thead>
      <tbody>
        {filtered.map(t => <tr key={t.name}>
            <td><code>{t.name}</code></td>
            <td>{t.description}</td>
            <td><code>{t.params}</code></td>
          </tr>)}
      </tbody>
    </table>;
};

Tiro MCP 서버는 아래 도구들을 노출해요. 클라이언트가 연결되고 나면 어시스턴트가 사용자를 대신해 이 도구들을 호출할 수 있어요.

## 노트 & 콘텐츠

<ToolTable category="Notes & Content" />

[List notes](/ko/developers/mcp/tools/list-notes) · [Search notes](/ko/developers/mcp/tools/search-notes) · [Get note](/ko/developers/mcp/tools/get-note) · [Get transcript](/ko/developers/mcp/tools/get-transcript)

## 공유 & 정리

<ToolTable category="Sharing & Organization" />

[Folder search](/ko/developers/mcp/tools/folder-search) · [Share links](/ko/developers/mcp/tools/share-links)

## 위키

<ToolTable category="Wiki" />

[Wiki tools](/ko/developers/mcp/tools/wiki)

## 인증

<ToolTable category="Authentication" />

[Auth status](/ko/developers/mcp/tools/auth-status)
