0
API Keys
Manage your API keys for accessing the MCP API.
Your API Keys
API keys grant access to the MCP API. Keep them secure and don't expose them in client-side code.
API Key | Status | Created | Last Updated | Actions |
---|---|---|---|---|
No API keys found. Create your first API key to get started. |
MCP Server Usage in Cursor
How to use our hosted MCP servers with Cursor
Configure Cursor to use our hosted MCP servers for enhanced productivity and specialized crypto tools:
// Configure Cursor to use AurraCloud MCP server
// In Cursor, open Settings > MCP Configuration
{
"mcpServers": {
"aurra-mcp-server": {
"url": "https://mcp-v1.aurracloud.com/mcp/YOUR_API_KEY_GOES_HERE/chainlink-toolkit/sse",
}
}
}
Benefits of using our hosted MCP servers:
- Pre-configured crypto-specific tools and models
- High-performance infrastructure optimized for developer workflows
- Lower latency responses for faster development
- Automatic updates with the latest tools and models
- Dedicated support and documentation
API Key Usage
How to use your API keys with the MCP API
To authenticate your API requests, include your API key in the request headers:
// Example API request
fetch('https://api-v1.aurracloud.com/v1/chat/completions', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'Authorization': 'Bearer your-api-key-here'
},
body: JSON.stringify({
model: 'aurra-gpt-4o',
messages: [{ role: 'user', content: 'Hello, world!' }],
tools: [
{type: 'native', slug: 'chainlink-toolkit'},
{type: 'mcp', slug: 'mcp-server-slug'}
]
}),
})
.then(response => response.json())
.then(data => console.log(data));
Best practices for API key security:
- Never expose API keys in client-side code or public repositories
- Store API keys in environment variables or secure vaults
- Use separate API keys for different applications
- Rotate your API keys periodically
We use cookies to enhance your experience, analyze site usage, and personalize content. Your privacy matters to us.