- 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.
- Turn on Developer mode once: ChatGPT Settings - Security and login
- Click the button below - it copies the server URL and opens ChatGPT Plugins
- Click +, fill in the values below, choose OAuth, and create it
- Sign in to PracticPro when ChatGPT asks
PracticPro
PracticPro business management: contacts, jobs, estimates, invoices, payments and documents.
https://mcp.practicpro.com/mcp
Developer mode is on Plus, Pro, Business, Enterprise and Edu, on the web. PracticPro is in review for the ChatGPT plugin directory - once it is listed, this becomes a one-click install.
- Click the button below - it copies the server URL and opens Gemini
- Open Settings - Connected Apps, and under Custom apps click Add a custom app
- Paste the URL, click Next, and sign in to PracticPro
- In a chat, type @ and pick PracticPro
https://mcp.practicpro.com/mcp
Needs a personal Google account in the US, age 18 or over, with Keep Activity on. English only. Add it once on the web and it works in the Gemini mobile app too.
- Click the button below - it copies the server URL and opens Grok Connectors
- Click New Connector, choose Custom, and fill in the values below
- Sign in to PracticPro when Grok asks
- In a new chat, turn PracticPro on from the tools menu
PracticPro
https://mcp.practicpro.com/mcp
Custom connectors need a paid Grok plan. On Grok Business or Enterprise, a team admin adds the connector first.
- Click the button below - it copies the server URL and opens Copilot Studio
- Open your agent, then Tools - Add a tool - New tool - Model Context Protocol
- Fill in the values below, choose OAuth 2.0 - Dynamic discovery, and click Create
- Choose Create a new connection, sign in to PracticPro, then Add to agent
PracticPro
PracticPro business management: contacts, jobs, estimates, invoices, payments and documents.
https://mcp.practicpro.com/mcp
For Microsoft 365 organizations building Copilot agents. Custom MCP servers are added through Copilot Studio, not the Copilot consumer app.
- Click the button below - it copies the server URL and opens Perplexity Connectors
- Click +, choose Add custom connector, and fill in the values below
- Set authentication to OAuth 2.0, click Add, and sign in to PracticPro
- Turn PracticPro on in a thread to use it
PracticPro
PracticPro business management: contacts, jobs, estimates, invoices, payments and documents.
https://mcp.practicpro.com/mcp
Requires Perplexity Pro, Max or Enterprise.
- Click the button below - it copies the server URL and opens Mistral Vibe
- Open Connectors from the side panel, click Add Connector, and choose the Custom MCP Connector tab
- Fill in the values below, choose OAuth2.1 as the authentication method, click Connect, and sign in to PracticPro
- In a chat, open the tools menu and turn PracticPro on
PracticPro
https://mcp.practicpro.com/mcp
Available on every Mistral Vibe plan, including Free. In a team workspace, only an admin can add custom connectors.
- 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"
}
}
}