Documentation
Everything you need to create, configure, and connect your first hosted MCP server.
Create an Account
Sign up for a free BoltSchema account. You'll receive a verification email — click the link to activate your account and access the dashboard.
Free tier includes 1 permanent MCP server profile — no credit card required.
Configure Your Data Source
From the dashboard, create a new MCP server profile. Choose your data source type and provide the connection details:
PostgreSQL Database
Provide your connection string. BoltSchema will introspect your schema and expose tables, views, and relationships as MCP tools and resources.
postgresql://user:pass@host:5432/mydb
Get Your MCP Endpoint
Once your profile is created, BoltSchema generates a unique, secure endpoint URL for your MCP server. Copy this URL to connect any MCP-compatible client.
Your MCP server endpoint:
https://mcp.boltschema.com/v1/your-token-here
Connect Your AI Assistant
Add the MCP server URL to your AI assistant's configuration. Here are examples for popular clients:
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"my-database": {
"url": "https://mcp.boltschema.com/v1/your-token"
}
}
}Cursor / VS Code
Add the endpoint URL in your editor's MCP server settings. BoltSchema endpoints work with any client that supports the Model Context Protocol standard.
Start Querying
That's it! Your AI assistant can now interact with your database or API through natural language. Ask it to query data, describe your schema, or perform operations — all through the MCP protocol.
Tip: Use the Sandbox in your dashboard to test your MCP server before connecting it to a production AI assistant.
Frequently Asked Questions
Is my database connection secure?
Yes. All credentials are encrypted with AES-256-GCM before storage. Connections use TLS, and your database is only accessed when an MCP client makes a request through your server.
Can I use multiple databases?
Free tier accounts support 1 permanent profile. Paid plans allow multiple profiles with different data sources, each with their own MCP endpoint.
What happens if my database goes down?
Your MCP server will return appropriate error messages to connected clients. BoltSchema monitors connectivity and will display the status on your dashboard.