- Click the button below - Claude opens with the connector form already filled in
- Review the name and URL, then click "Add"
- Start a new chat and say "Connect me to PracticPro" - Claude will prompt you to sign in
Works on claude.ai and the Claude desktop app. Available on all plans including Free (Free is limited to one custom connector). If you are signed out, Claude prompts you to sign in first and lands on the prefilled form.
- Click the button below to open PracticPro in the official ChatGPT Apps Directory
- Click "Connect" on the app page
- Sign in with your PracticPro username and the verification code sent to your phone/email
- Start a new chat and say "@PracticPro find my open jobs" (or any task) to use it
Installs from the ChatGPT Apps Directory and works on all plans including Free. Team/Enterprise workspace admins may need to enable apps in workspace settings first.
Advanced: install manually via Developer Mode
- Open ChatGPT Settings -> Apps -> Advanced settings
- Click "Create app", name it PracticPro, paste the MCP Server URL above
- Set Authentication to "OAuth", accept the consent, and click "Create"
- Start a chat, mention the connector, and sign in when prompted
Developer Mode requires Plus, Pro, Team, Business, Enterprise, or Edu - not available on Free. Plus and Pro are read-only; full read/write requires Business, Enterprise, or Edu.
- Open Gemini and go to Settings - Extensions
- Click "Add Extension" and choose MCP Server
- Enter PracticPro as the name and paste the MCP Server URL from above
- Start a new chat and say "Connect me to PracticPro"
Available on Gemini Advanced (Google One AI Premium) plans.
- Open Microsoft Copilot and go to Settings - Plugins
- Click "Add plugin" and choose MCP Server
- Enter PracticPro as the name and paste the MCP Server URL from above
- Start a new chat and say "Connect me to PracticPro"
Available on Copilot Pro and Microsoft 365 Copilot plans.
- In your Make scenario, add an MCP module (search "MCP" in the module list)
- Click "Add" to create a new MCP connection
- Paste the MCP Server URL from above and save
- The module will discover PracticPro tools automatically
Tip: Use Make to automate workflows like "When a new form is submitted, create a contact and job in PracticPro."
- In your Zap, add an MCP action step (search "MCP" in the app list)
- Click "Connect a new account" and paste the MCP Server URL from above
- Choose the PracticPro tool you want to use (navigate, submit, etc.)
- Map your trigger data to the tool inputs and publish
Tip: Combine with triggers like "New Google Form response" or "New email" to auto-create PracticPro contacts, jobs, or send texts.
- In your N8N workflow, add the MCP Client Tool node (under AI - Tools)
- In the node settings, paste the MCP Server URL into the SSE Endpoint field
- Connect the MCP Client Tool node to your AI Agent node's Tool input
- The AI agent will discover and call PracticPro tools automatically
Tip: Attach an LLM (OpenAI, Anthropic, etc.) to the Agent's Model input, and the MCP Client Tool to the Tool input. The agent will use PracticPro tools based on your prompts.
- Click the button below - Raycast opens with the connector form pre-filled
- Review the name and URL, then confirm install
- Open Raycast AI Chat and say "Connect me to PracticPro"
Mac only. Requires Raycast Pro for AI features. If the button does not open Raycast, install it from raycast.com first.
- Open your terminal and run the command below to add the MCP server
- Restart Claude Code or start a new session
- Say "Connect me to PracticPro" to get started
claude mcp add practicpro https://mcp.practicpro.com/mcp
- Click the button below - Cursor opens with the MCP server config pre-filled
- Confirm to install
- In a new chat, switch to Agent mode and say "Connect me to PracticPro"
Manual install (if the button doesn't open Cursor)
- Open Cursor -> Settings -> Tools & MCP
- Click "Add new MCP server", name it PracticPro, set transport to HTTP, paste the URL above
- In Agent mode, say "Connect me to PracticPro"
- Open Windsurf and click the MCPs icon in the Cascade panel (top-right)
- Click "Configure" to open the MCP config file
- Add the configuration below to the mcpServers object and save
- Reload the window and say "Connect me to PracticPro" in Cascade
{
"mcpServers": {
"practicpro": {
"serverUrl": "https://mcp.practicpro.com/mcp"
}
}
}
- Click the button below - VS Code opens and prompts you to install the PracticPro MCP server
- Confirm the install
- In Copilot Chat, switch to Agent mode and say "Connect me to PracticPro"
Manual install (workspace config)
- Create .vscode/mcp.json in your project
- Paste the config below and save
- VS Code shows a "Start" button above the config - click it
- In Copilot Chat (Agent mode), say "Connect me to PracticPro"
{
"servers": {
"practicpro": {
"type": "http",
"url": "https://mcp.practicpro.com/mcp"
}
}
}