Connect the Para Docs MCP server to AI tools for seamless access to documentation, code examples, and guides. This integration enables AI assistants to search Para Docs directly via the Model Context Protocol.

Prerequisites

  • Active accounts for target AI tools
  • Para Docs MCP server URL: http://docs.getpara.com/mcp
  • AI tool with remote MCP connection support (may be in beta)

Installation and Setup

Set up connections by adding the MCP server as a custom connector in each tool’s settings.

Configure ChatGPT Connection

  1. Open ChatGPT settings from your avatar menu
  2. Select Connectors in the sidebar
  3. Click Create to open the New Connector dialog
  4. Enter the MCP server URL: http://docs.getpara.com/mcp
  5. Configure authentication if required (Para Docs MCP uses no security by default)
  6. Save and test the connection

Usage

Query the MCP server via your AI tool’s interface after setup. Provide search terms to the “SearchParaDocs” tool for relevant results.
1

Invoke Search Tool

Ask your AI: “Search Para Docs for [topic]”The tool returns titles, snippets, and links to relevant documentation.
2

Handle Responses

Review returned contextual content and follow links for full details.
3

Error Handling

Check for connection issues and retry if the server is unreachable.

Example

Query Example

Search Para Docs for how to sign a basic message

Expected Response

The MCP server returns structured results:
Response
{
  "results": [
    {
      "title": "Sign Messages with Para",
      "snippet": "Learn how to sign messages using Para's wallet integration...",
      "link": "https://docs.getpara.com/v2/react/guides/web3-operations/sign-with-para"
    },
    {
      "title": "Web3 Operations Guide",
      "snippet": "Complete guide for signing transactions and messages...",
      "link": "https://docs.getpara.com/v2/react/guides/web3-operations"
    }
  ]
}