Model Context Protocol (MCP) is an open standard that lets AI models call external tools and retrieve structured context from services you define. In iBlueprint, you attach MCP servers directly to a Blueprint. When that Blueprint runs, its AI nodes can invoke any tool exposed by the server — querying databases, calling internal APIs, or fetching live data — without you having to hard-code those capabilities into the Blueprint itself.Documentation Index
Fetch the complete documentation index at: https://docs.iblueprint.ai/llms.txt
Use this file to discover all available pages before exploring further.
Add an MCP server to a Blueprint
Open Blueprint settings
Open the Blueprint you want to extend, then navigate to Settings → MCP Servers within the Blueprint editor.
Configure authentication
Choose an authentication type and supply the required credentials. See Authentication types below.
Set a timeout
Enter the maximum time (in seconds) iBlueprint should wait for the server to respond. The allowed range is 1–120 seconds; the default is 30 seconds.
Add custom headers (optional)
If your server requires additional HTTP headers — for example, a workspace ID or tenant identifier — add them as key-value pairs in the Custom headers section.
Declare available tools (optional)
List the tool names your server exposes. This helps iBlueprint surface the right tools to AI nodes and avoids discovery requests at runtime. Each tool entry accepts a name, an optional description, and a JSON parameters schema.
Authentication types
iBlueprint supports five authentication schemes for MCP servers.- None
- Bearer token
- API key
- Basic auth
- OAuth
No authentication. Use this for internal servers that are already protected at the network level.No additional fields are required.
Timeout configuration
The timeout controls how long iBlueprint waits for a single response from the MCP server before failing the tool call.| Setting | Value |
|---|---|
| Minimum | 1 second |
| Maximum | 120 seconds |
| Default | 30 seconds |
