Connectors

Setup your favourite Agentic AI tool with the Pending AI MCP server

Supported Connectors

For easier access, setup guides below describe how to access the MCP Server via a variety of common AI agent providers:

Building MCP Clients

For cases where you are building your own MCP Client connector, access the MCP Server via the HTTPS transport scheme at https://mcp.pending.ai/mcp. Authentication is required for tool access and listing. It is recommended to use a framework that supports the OAuth2.0 authentication flow. Below shows a minimal example for using the Python FastMCP package.

FastMCP Example
from fastmcp import Client

async with Client("https://mcp.pending.ai/mcp", auth="oauth") as client:
    result = await client.list_tools()

Last updated

Was this helpful?