MCP access

Connect AI tools to renewal operations safely.

InstaRenewal exposes a scoped Model Context Protocol endpoint so AI coding tools and assistants can read renewal context, generate drafts, and perform approved workspace actions.

Endpoint

https://instarenewal.com/api/mcp

Authentication

Use an Authorization: Bearer YOUR_MCP_TOKEN header.

Token safety

Tokens are shown once, stored as hashes, scoped to one workspace, rate-limited, and revocable.

Protocol

The endpoint supports MCP JSON-RPC methods for tools, resources, prompts, and initialization.

Available access

Read scopes

  • read:dashboard
  • read:clients
  • read:assets
  • read:reports

Write scopes

  • write:clients
  • write:assets
  • write:reports
  • write:workflow
  • run:checks

Safety rules

  • Free workspaces get one read-only token
  • Write tools require Agency or higher
  • Every tool call is logged
  • Workspace plan limits are enforced

Generic JSON-RPC request

POST https://instarenewal.com/api/mcp
Authorization: Bearer YOUR_MCP_TOKEN
Content-Type: application/json

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "list_due_assets",
    "arguments": {
      "days": 7
    }
  }
}

Create and manage tokens from MCP settings. Paste your token into your chosen MCP client configuration.