Skip to main content

Overview

Paste an OpenAPI spec URL and BoostGPT automatically generates a working MCP server. No coding required.

Quick Start

1

Get OpenAPI URL

Find your API’s OpenAPI specification URL:
2

Create Server

  • Go to Dashboard -> MCP Servers
  • Click Create Server
  • Select Import OpenAPI
3

Paste URL

Paste your OpenAPI spec URL and click Generate
4

Server Ready

BoostGPT generates your MCP server instantly:
5

Connect to Agent

  • Agent -> Tools tab -> Add Tool -> Add New
  • Enter your MCP URL
  • Start using in Playground

OpenAPI Format

Your OpenAPI spec should be in JSON or YAML format:

Auto-Generated Tools

BoostGPT converts each API endpoint into an agent tool:

Example: CRM API

OpenAPI Spec:
Generated Tools:

Authentication

Add authentication to your OpenAPI spec:
Configure credentials in Dashboard -> MCP Servers -> Your Server -> Settings

Testing

Test your MCP server after creation:
1

Add to Agent

Connect your MCP server to any agent
2

Open Playground

Go to agent’s Playground tab
3

Test Tools

Common Issues

Ensure your URL returns valid OpenAPI 3.0+ JSON or YAML. Test it in a browser first.
Add security schemes to your OpenAPI spec and configure credentials in MCP server settings.
Check that your API endpoints return proper responses. Review error messages in agent Insights.

Best Practices

  1. Clear endpoint descriptions - AI uses descriptions to understand when to call tools
  2. Include examples - Add example requests/responses in your OpenAPI spec
  3. Document parameters - Describe what each parameter does
  4. Use semantic naming - Endpoint names like /users become tool names like list_users
  5. Version your API - Use /v1/ in paths to support multiple versions

Public APIs

Many public APIs provide OpenAPI specs:
Import these to create custom connectors for public services.

Next Steps

Authentication

Configure API authentication

Postman Import

Alternative: Upload Postman collection