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

# MCP Server

> Learn how to use the Monime Docs MCP server and integrate it with AI clients like VS Code (Copilot), Cursor, Claude, and more

## Overview

The Monime Documentation MCP (Model Context Protocol) server is automatically generated and hosted, providing AI assistants with direct access to Monime's comprehensive documentation. This integration enables your AI tools to search through documentation and interact with APIs directly from within your favorite AI clients

## MCP Server Access

Your Monime MCP server is automatically generated and hosted at:

**`https://docs.monime.io/mcp`**

<Note>
  This server is automatically updated to ensure it is always up-to-date with
  the latest documentation changes.
</Note>

## Features

The Monime Docs MCP server provides:

<CardGroup cols={2}>
  <Card title="Documentation Search" icon="magnifying-glass">
    Built-in search tool to query information across all Monime documentation
  </Card>

  <Card title="API Integration" icon="api">
    Direct access to Monime API endpoints (when configured with OpenAPI specs)
  </Card>

  <Card title="Real-time Updates" icon="arrows-rotate">
    Automatically stays current with the latest documentation changes
  </Card>

  <Card title="Standardized Access" icon="plug">
    Works with any MCP-compatible AI client using the same connection method
  </Card>
</CardGroup>

## Supported AI Clients

<Tabs>
  <Tab title="Claude Desktop">
    Claude Desktop has native MCP support and can connect to our MCP server.

    **Compatible with**: Claude 3.5 Sonnet, Claude 3.5 Haiku, and newer models
  </Tab>

  <Tab title="Cursor">
    Cursor has built-in MCP support for connecting to external documentation servers.

    **Compatible with**: Latest Cursor versions with MCP protocol support
  </Tab>

  <Tab title="Other MCP Clients">
    Any MCP-compatible AI client can connect to the Monime documentation server.

    **Examples**: Goose, Continue, and other tools supporting MCP protocol
  </Tab>
</Tabs>

## Quick Setup

### Prerequisites

<Steps>
  <Step title="MCP-Compatible Client">
    Use an AI client that supports the Model Context Protocol (Claude Desktop, Cursor, etc.)
  </Step>

  <Step title="Internet Access">
    Ensure your client can access `https://docs.monime.io/mcp`
  </Step>

  <Step title="No Authentication Required">
    The Monime MCP server is publicly accessible - no API keys needed for documentation access
  </Step>
</Steps>

### Server URL

Simply use this URL in your MCP client configuration:

```
https://docs.monime.io/mcp
```

<Info>
  Since this is a cloud hosted, there's no need to install or run
  any local servers. Just connect directly to the URL.
</Info>

## Detailed Integration Guides

### Claude Desktop Integration

<Steps>
  <Step title="Access Connectors Settings">
    In Claude Desktop, navigate to **Settings** → **Connectors**
  </Step>

  <Step title="Add Custom Connector">
    Click **"Add custom connector"** and enter: - **Name**: `Monime Documentation`

    * **URL**: `https://docs.monime.io/mcp`
  </Step>

  <Step title="Save and Test">
    Click **"Add"** to save the configuration. Test by starting a new chat and
    selecting the Monime Documentation connector from the attachments menu (plus
    icon).
  </Step>
</Steps>

### Cursor Integration

<Steps>
  <Step title="Open MCP Settings">
    Use **Cmd/Ctrl + Shift + P** to open the command palette, then search for **"Open MCP settings"**
  </Step>

  <Step title="Add Custom MCP Server">
    Select **"Add custom MCP"** to open the `mcp.json` file, then add:

    ```json theme={null}
    {
    	"mcpServers": {
    		"monime-docs": {
    			"url": "https://docs.monime.io/mcp"
    		}
    	}
    }
    ```
  </Step>

  <Step title="Test Connection">
    In Cursor's chat, ask: **"What tools do you have available?"**

    You should see the Monime documentation search tool listed.
  </Step>
</Steps>

## Usage Examples

Once configured, you can ask your AI assistant questions about Monime:

<AccordionGroup>
  <Accordion title="Account Setup Questions">
    * "How do I create a Monimeer account?" - "What information is needed for
      Space creation?" - "How do I verify my phone number with Monime?"
  </Accordion>

  <Accordion title="API Integration Queries">
    * "Show me how to generate API tokens" - "What are the rate limits for Monime
      API?" - "How do I authenticate API requests?"
  </Accordion>

  <Accordion title="Payment Processing">
    * "How do I create a payment link?" - "What payment methods does Monime
      support?" - "How do I handle payment webhooks?"
  </Accordion>

  <Accordion title="Troubleshooting">
    * "Why am I getting a 401 error?" - "How do I resolve OTP delivery issues?" -
      "What should I do if my Space creation fails?"
  </Accordion>
</AccordionGroup>

## Available Tools

The Monime MCP server provides the following tools to AI assistants:

<CardGroup cols={2}>
  <Card title="Documentation Search" icon="magnifying-glass">
    Search across all Monime documentation pages for relevant information
  </Card>

  <Card title="API Endpoints" icon="api">
    Access to configured Monime API endpoints (when OpenAPI specs are available)
  </Card>
</CardGroup>

## Troubleshooting

<AccordionGroup>
  <Accordion title="Cannot Connect to Server">
    **Issue**: AI client cannot access the Monime MCP server

    **Solutions**:

    * Verify the URL is correct: `https://docs.monime.io/mcp`
    * Check your internet connection
    * Ensure your AI client supports MCP protocol
    * Try restarting your AI client
  </Accordion>

  <Accordion title="Tools Not Available">
    **Issue**: AI assistant doesn't show Monime documentation tools

    **Solutions**:

    * Confirm the MCP server is properly configured in your client
    * Check that the connection is active in your AI client's interface
    * Try asking "What tools do you have available?" to verify connection
    * Restart your AI client and reconnect to the server
  </Accordion>

  <Accordion title="Search Results Empty">
    **Issue**: Documentation search returns no results

    **Solutions**:

    * Try rephrasing your search query
    * Use more specific or more general search terms
    * Verify the MCP connection is active
    * Check if docs.monime.io is accessible from your network
  </Accordion>

  <Accordion title="Client-Specific Issues">
    **Issue**: Problems with specific AI clients

    **Solutions**:

    * For Claude: Ensure you're using Claude 3.5 Sonnet or newer
    * For Cursor: Verify MCP support is enabled in settings
    * Check the official documentation for your specific AI client
    * Contact the AI client's support team for client-specific issues
  </Accordion>
</AccordionGroup>

## Security and Privacy

<Info>
  The Monime MCP server provides read-only access to publicly available
  documentation. No authentication is required for documentation access.
</Info>

**Security Features:**

* All communication uses HTTPS encryption
* No user credentials required or stored
* Read-only access to public documentation
* No sensitive information transmitted or cached

## Support and Resources

<CardGroup cols={2}>
  <Card title="MCP Protocol Documentation" icon="book" href="https://spec.modelcontextprotocol.io/">
    Learn more about the Model Context Protocol specification
  </Card>

  <Card title="AI Client Help" icon="robot">
    Refer to your AI client's documentation for MCP setup assistance
  </Card>
</CardGroup>

## Next Steps

<Note>
  With the Monime Docs MCP server configured, your AI assistant now has
  comprehensive knowledge about Monime's platform, APIs, and best practices.
</Note>

<CardGroup cols={2}>
  <Card title="Start Building" icon="hammer" href="/get-started">
    Begin your Monime integration journey with our quickstart guide
  </Card>

  <Card title="API Reference" icon="book" href="/apis">
    Explore the complete API documentation
  </Card>

  <Card title="Examples Repository" icon="code" href="#">
    Browse practical implementation examples
  </Card>

  <Card title="Developer Community" icon="users" href="#">
    Join our developer community for support and discussions
  </Card>
</CardGroup>
