Resources MCP Server Setup
Resources hosts a remote MCP server at https://docs.sequra.com/mcp. Configure your AI development tools to connect to this server. If your APIs require authentication, you can pass in headers via query parameters or however headers are configured in your MCP client.
Add to~/.cursor/mcp.json:
{
"mcpServers": {
"sequra": {
"command": "npx",
"args": [
"mcp-remote",
"https://simba.sequra.com/mcp",
"--transport",
"http-only",
"--header",
"Authorization: Bearer ${AUTH_TOKEN}"
],
"env": {
"AUTH_TOKEN": "YOUR_GENERATED_TOKEN_HERE"
}
}
}
}Note for Spain users: Use https://simba.sequra.com/mcp Note for outside Spain: Use https://simba.sequra.svea.com/mcp
Updated about 1 month ago