Documentation Index
Fetch the complete documentation index at: https://docs.getpara.com/llms.txt
Use this file to discover all available pages before exploring further.
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.
ChatGPT
Claude Desktop
Claude Code
Cursor
- Open ChatGPT settings from your avatar menu
- Select Connectors in the sidebar
- Click Create to open the New Connector dialog
- Enter the MCP server URL:
http://docs.getpara.com/mcp
- Configure authentication if required (Para Docs MCP uses no security by default)
- Save and test the connection
- Navigate to Settings > Extensions in Claude Desktop
- Click Advanced settings and locate the Extension Developer section
- Add a custom connector with the remote MCP URL:
http://docs.getpara.com/mcp
- Note: Remote support is in beta; use local STDIO if preferred
- Verify the connection in Claude’s interface
- Run the CLI command:
claude mcp add
- Follow the wizard to input the MCP server URL:
http://docs.getpara.com/mcp
- Select remote MCP support
- Integrate tools like search and fetch for Para Docs access
- Restart Claude Code to apply changes
- Open Cursor settings and navigate to Models or API Keys
- Disable unnecessary models if needed
- Add a custom model or provider, overriding the base URL to
http://docs.getpara.com/mcp
- Use agent mode for MCP interactions (similar to VS Code Copilot)
- Verify by testing a documentation query in the editor
Usage
Query the MCP server via your AI tool’s interface after setup. Provide search terms to the “SearchParaDocs” tool for relevant results.
Invoke Search Tool
Ask your AI: “Search Para Docs for [topic]”The tool returns titles, snippets, and links to relevant documentation.
Handle Responses
Review returned contextual content and follow links for full details.
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:
{
"results": [
{
"title": "Sign Messages with Para",
"snippet": "Learn how to sign messages using Para's wallet integration...",
"link": "https://docs.getpara.com/v3/react/guides/web3-operations/sign-with-para"
},
{
"title": "Web3 Operations Guide",
"snippet": "Complete guide for signing transactions and messages...",
"link": "https://docs.getpara.com/v3/react/guides/web3-operations"
}
]
}