Direct answer

A custom MCP connector lets ChatGPT discover and invoke tools exposed by a remote MCP server. Builders need a reachable server, clear tool schemas, appropriate authentication, predictable responses and a safety model for write actions. Workspace administrators control availability in supported ChatGPT plans.

Why this matters now

MCP moves a custom integration from a one-off chat feature toward a reusable protocol surface. OpenAI documents full MCP support in ChatGPT developer mode for eligible Business, Enterprise and Edu workspaces, with administrators able to test and publish connectors. OpenAI also states the responsibility boundary: organizations remain responsible for the safety and appropriateness of servers they connect.

That is a distribution opportunity. A well-designed remote server can present the same governed capability to several compatible hosts. It is not permission to expose an internal API unchanged.

Production requirements

Discoverable

Names tell the model when to call a tool—and when not to.

Scoped

Every request resolves to the correct user, workspace and operation.

Compact

Results carry the evidence needed for the next reasoning step.

Safe

Read and write behavior is separated; consequences require confirmation.

Use the tool-design guide before asking users to connect a server.

A sensible test path

  1. Begin read-only with one narrow user job.
  2. Test whether realistic prompts select the correct tool.
  3. Test authorization and cross-workspace denial.
  4. Inspect output size, source identity and empty results.
  5. Add writes only after approvals, idempotency and auditing exist.
  6. Run adversarial tests against connected documents.

The Apps SDK can add a ChatGPT-facing interface, but the durable investment is still the server’s data, permission and tool contract.

The SPYN3 connection

SPYN3 is building a hosted MCP endpoint for workspace knowledge beside a REST API for applications. Its current beta exposes search, query, source listing and document retrieval. See the hosted MCP quickstart for exact methods and boundaries.

Built for the next step

Give ChatGPT useful context—not unrestricted access

Connect a governed workspace through a compact hosted MCP surface.

Explore the MCP endpoint
About SPYN3

SPYN3 is AI-ready data infrastructure for technical solopreneurs and AI builders. It connects business data into a workspace-isolated knowledge layer and exposes it through a unified REST API and hosted MCP server, with permission-scoped access and source-aware returns. SPYN3 is currently in private beta; current capabilities and product direction are documented on the product facts page.

Sources

  1. OpenAI: developer mode and full MCP connectors — current connector support, administration and safety responsibilities. Verified 13 Sep 2026
  2. OpenAI: build with the Apps SDK — MCP-based app development and testing. Verified 13 Sep 2026
  3. Anthropic: prompt injection defenses — indirect prompt-injection risk and layered defenses. Verified 13 Sep 2026