Connect to MCP Server
Connect your AI assistant to the SeekrFlow OpenAPI spec to generate working, authenticated code on demand.
The SeekrFlow MCP server implements the Model Context Protocol (MCP) to give your AI assistant direct access to the SeekrFlow OpenAPI spec. When connected, your assistant can read endpoint definitions, parameters, request and response schemas, and authentication requirements — then use that information to generate working, authenticated code without you having to look anything up manually.
For example, ask "How do I upload a file to the AI-Ready Data Engine?" and your assistant will:
- Retrieve the SeekrFlow OpenAPI spec.
- Locate the correct
/flow/filesendpoint definition. - Read the required parameters, request body schema, and authentication requirements.
- Generate working code with proper authentication and request structure.
- Include response handling based on the defined response schemas.
Supported tools:
- VSCode
- Cursor
- Windsurf
- Other AI assistants that support remote MCP servers
Authentication
No authentication is required to connect to the SeekrFlow MCP server.
When your AI assistant generates code that makes SeekrFlow API calls, those calls require your SeekrFlow API key in the Authorization header. Set your API key as an environment variable so it's available in generated code:
export SEEKR_API_KEY=your_api_keyset SEEKR_API_KEY=your_api_keyFor instructions on getting your API key, see Getting started with your API.
Connect your tools
SeekrFlow hosts a remote MCP server at https://docs.seekr.com/mcp. Configure your AI development tools to connect to this server using the steps below.
VSCode
- Open the Command Palette (
Cmd+Shift+Pon macOS,Ctrl+Shift+Pon Windows/Linux). - Select MCP: Add Server....
- Select HTTP (HTTP or Server-Sent Events).
- Enter
https://docs.seekr.com/mcpfor the server URL. - Enter
seekr-api(or any unique identifier) for the server name.
Or add the following to your VSCode MCP configuration:
{
"mcpServers": {
"seekr-api": {
"type": "http",
"url": "https://docs.seekr.com/mcp"
}
}
}Cursor
- Open
~/.cursor/mcp.json. If the file doesn't exist, create it withtouch ~/.cursor/mcp.json. - Add the following configuration:
{
"mcpServers": {
"seekr-api": {
"type": "http",
"url": "https://docs.seekr.com/mcp"
}
}
}- Restart Cursor to load the MCP connection.
Windsurf
- Open
~/.codeium/windsurf/mcp_config.json. If the file doesn't exist, create it withtouch ~/.codeium/windsurf/mcp_config.json. - Add the following configuration:
{
"mcpServers": {
"seekr-api": {
"type": "http",
"url": "https://docs.seekr.com/mcp"
}
}
}- Restart Windsurf to load the MCP connection.
Other AI assistants
Any AI assistant that supports remote MCP servers can connect to SeekrFlow using https://docs.seekr.com/mcp. Refer to your tool's documentation for instructions on adding a remote MCP server.
Troubleshooting
Connection issues
- Restart your editor: MCP connections sometimes need a restart after configuration changes.
- Verify the server URL: Confirm you are using
https://docs.seekr.com/mcp.
File issues
- Cursor: Make sure
~/.cursor/mcp.jsonexists and is valid JSON - Windsurf: Check
~/.codeium/windsurf/mcp_config.jsonexists and contains valid JSON. - JSON syntax: Verify all quotes and brackets are correct
Get help
- Test your API key by making a direct SeekrFlow API call to confirm it is active.
- Contact SeekrFlow support or see Getting started to verify your account setup.
Updated 18 days ago
