Skip to main content

Documentation Index

Fetch the complete documentation index at: https://leadping.ai/docs/llms.txt

Use this file to discover all available pages before exploring further.

Leadping provides a hosted Model Context Protocol (MCP) server for the documentation at:
https://leadping.ai/docs/mcp
Use it when you want an AI assistant to answer Leadping questions from the current docs instead of relying on stale model knowledge or copied snippets.

What the MCP server does

The Leadping MCP server gives compatible AI tools read-only access to the published documentation and API reference. Once connected, your assistant can:
  • Search the Leadping docs for relevant guides, API details, and examples
  • Read full documentation pages when it needs more context
  • Inspect the OpenAPI reference through the documentation filesystem
  • Link answers back to the relevant Leadping docs pages
This is useful when you are building an integration, checking carrier or compliance requirements, or asking an agent to help with API usage.

What is MCP?

MCP is an open protocol that lets AI applications connect to external tools and data sources in a standard way. Instead of pasting documentation into chat, you connect the assistant to the source. For Leadping, that source is the published documentation. The MCP server does not make changes to your account, send messages, create leads, or modify production data.

Available tools

The hosted server exposes documentation-focused tools:
ToolUse it for
search_leadping_documentationBroad searches across Leadping guides, API reference content, and examples
query_docs_filesystem_leadping_documentationReading specific .mdx docs pages, listing the docs structure, or searching exact terms in a virtual read-only docs filesystem
Start with search for general questions. Use the filesystem tool when the assistant needs exact page content or wants to inspect the docs tree.

Quick start

Add the MCP server URL to your MCP-compatible client:
https://leadping.ai/docs/mcp
After connecting, restart or refresh your client if required, then ask a Leadping-specific question. Try prompts like:
  • “Search the Leadping docs for TrustedForm requirements.”
  • “How do I prepare a business for 10DLC carrier registration in Leadping?”
  • “Find the Leadping API endpoint for creating a lead and explain the required fields.”
  • “What message categories are prohibited on Leadping?”

Codex

Add the Leadping MCP server to your Codex MCP configuration:
[mcp_servers.leadping]
url = "https://leadping.ai/docs/mcp"
Restart Codex so the server is loaded.

Cursor

Add the server to your Cursor MCP configuration:
{
  "mcpServers": {
    "leadping": {
      "url": "https://leadping.ai/docs/mcp"
    }
  }
}
Then enable the server in Cursor settings. Once connected, Cursor can use the Leadping docs while helping you write integration code.

VS Code

For VS Code clients that support MCP over HTTP, add a server entry similar to:
{
  "servers": {
    "leadping": {
      "url": "https://leadping.ai/docs/mcp"
    }
  }
}
Open the MCP configuration in VS Code and start the server from the editor controls if your extension requires it.

Claude Code

If your Claude Code version supports remote HTTP MCP servers, add Leadping with:
claude mcp add --transport http Leadping https://leadping.ai/docs/mcp
Restart Claude Code, then run /mcp to confirm that the Leadping server is connected.

How it works

  1. Your AI assistant receives a Leadping-related question.
  2. The assistant searches the Leadping MCP server for relevant docs.
  3. If needed, it reads the full page content from the virtual docs filesystem.
  4. The assistant answers using the retrieved documentation context.
The MCP server is documentation-only. For authenticated account actions, use the Leadping application or API directly.

Troubleshooting

If your assistant cannot use the Leadping MCP server:
  • Confirm the server URL is exactly https://leadping.ai/docs/mcp
  • Check that your client supports remote HTTP MCP servers
  • Restart the MCP client after changing configuration
  • Verify the server appears as connected in your client’s MCP tools list
  • Ask a direct docs question, such as “Search Leadping docs for carrier registration”
If your client only supports local stdio MCP servers, use a supported remote-MCP bridge for that client, or check your client’s current MCP documentation.