> ## Documentation Index
> Fetch the complete documentation index at: https://hc.saas-manager.biz.nuro.jp/llms.txt
> Use this file to discover all available pages before exploring further.

# How to Use This Site

> Site structure, search, keyboard shortcuts, and MCP integration for the Admina support site

## Site Structure

The Admina support site is organized into the following tabs.

| Tab               | Content                                                                                        |
| ----------------- | ---------------------------------------------------------------------------------------------- |
| **Guides**        | Help center home, announcements, release notes, system status, how to use this site, RSS feeds |
| **IT Management** | SaaS management, device management, automation guides                                          |
| **AI Helpdesk**   | AI Helpdesk setup and operations                                                               |
| **Integration**   | Step-by-step guides for each SaaS integration                                                  |
| **API Reference** | OpenAPI specifications for IT Management and AI Helpdesk                                       |
| **Resources**     | Security information and useful tools                                                          |

Use the left sidebar to navigate to the page you need, or use search and keyboard shortcuts.

***

## How to Search

Open the search bar from the top of the page or with a keyboard shortcut.

1. Press **`⌘K`** (Mac) / **`Ctrl+K`** (Windows/Linux) to open search
2. Type a keyword (Japanese or English)
3. Use **`↑` `↓`** to move between results, then press **`Enter`** to open
4. Press **`Esc`** to close

Search covers all pages across the site, matching both page titles and body content.

***

## Keyboard Shortcuts

| Shortcut        | Action                      |
| --------------- | --------------------------- |
| `⌘K` / `Ctrl+K` | Open search                 |
| `↑` `↓`         | Navigate search results     |
| `Enter`         | Open selected result        |
| `Esc`           | Close search or modal       |
| `⌘.` / `Ctrl+.` | Open AI chat (when enabled) |

***

## AI Search via MCP Server

The Admina support site provides an [MCP (Model Context Protocol)](https://modelcontextprotocol.io/) server. Connect AI tools like Claude or Cursor to search and retrieve documentation content using natural language.

### MCP Server URL

```
https://support.i.moneyforward.com/mcp
```

### Setup by Tool

<Tabs>
  <Tab title="Claude.ai">
    1. Go to Claude settings → **Connectors** → **Add custom connector**
    2. Enter the following and click **Add**:
       * Name: `Admina Docs`
       * URL: `https://support.i.moneyforward.com/mcp`
    3. Select **Admina Docs** from the attachment button (`+`) in the chat
    4. Ask questions like "How do I connect Slack to Admina IT Management?"
  </Tab>

  <Tab title="Claude Code">
    Run the following command in your terminal:

    ```bash theme={null}
    claude mcp add --transport http admina-docs https://support.i.moneyforward.com/mcp
    ```

    After setup, Claude Code can reference Admina documentation while you work.
  </Tab>

  <Tab title="Cursor">
    Add the following to your `mcp.json` (Command Palette → **Open MCP settings**):

    ```json theme={null}
    {
      "mcpServers": {
        "admina-docs": {
          "url": "https://support.i.moneyforward.com/mcp"
        }
      }
    }
    ```

    Reload Cursor and the AI will be able to reference Admina documentation.
  </Tab>

  <Tab title="Codex">
    Add the following to your OpenAI Codex CLI config file (`~/.codex/config.toml`):

    ```toml theme={null}
    [[mcp_servers]]
    name = "admina-docs"
    transport = "http"
    url = "https://support.i.moneyforward.com/mcp"
    ```

    Or specify it as an option when starting a session:

    ```bash theme={null}
    codex --mcp-server "https://support.i.moneyforward.com/mcp"
    ```
  </Tab>

  <Tab title="VS Code">
    Add the following to your VS Code settings (`.vscode/settings.json` or user settings):

    ```json theme={null}
    {
      "mcp": {
        "servers": {
          "admina-docs": {
            "type": "http",
            "url": "https://support.i.moneyforward.com/mcp"
          }
        }
      }
    }
    ```

    If you use the GitHub Copilot or Claude extension, you can also add the MCP server through each extension's MCP settings.
  </Tab>

  <Tab title="JetBrains">
    If you use the AI Assistant plugin in a JetBrains IDE (IntelliJ IDEA, WebStorm, etc.):

    1. **Settings** → **Tools** → **AI Assistant** → **Model Context Protocol**
    2. Click **Add MCP server**
    3. Enter the following:
       * Name: `Admina Docs`
       * URL: `https://support.i.moneyforward.com/mcp`
    4. Click **OK** to save

    After setup, the AI Assistant chat can reference Admina documentation.
  </Tab>
</Tabs>

***

You can subscribe to announcements and release notes via RSS. See the [RSS Feed List](/en/announcements/feeds) for details.
