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"
}
}
}
}Add to~/.codeium/windsurf/mcp_config.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"
}
}
}
}Add toclaude_desktop_config.json:
{
"mcpServers": {
"sequra": {
"command": "npx",
"args": [
"mcp-remote",
"https://simba.sequra.com//mcp", // and if you are outside of Spain: https://simba.sequra.svea.com/mcp
"--transport",
"http-only",
"--header",
"Authorization: Bearer ${AUTH_TOKEN}"
],
"env": {
"AUTH_TOKEN": "YOUR_GENERATED_TOKEN_HERE"
}
}
}
}import os
import requests
# Set your token
AUTH_TOKEN = "YOUR_GENERATED_TOKEN_HERE"
BASE_URL = "https://simba.sequra.com/mcp" # or https://simba.sequra.svea.com/mcp
headers = {
"Authorization": f"Bearer {AUTH_TOKEN}",
"Content-Type": "application/json"
}
# Example: Search orders
payload = {
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_orders_tool",
"arguments": {
"from_date": "2024-01-01",
"status": "confirmed"
}
}
}
response = requests.post(BASE_URL, json=payload, headers=headers)
print(response.json())# Install MCP Inspector
npm install -g @modelcontextprotocol/inspector
# Run with SeQura MCP
npx @modelcontextprotocol/inspector \
npx mcp-remote \
https://simba.sequra.com/mcp \
--transport http-only \
--header "Authorization: Bearer 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 9 months ago
Did this page help you?