authenticate
Exchange EVE Online SSO authorization codes for access tokens to securely access market data via the MCP server.
Instructions
Exchange authorization code for access token
Input Schema
Name | Required | Description | Default |
---|---|---|---|
code | Yes | Authorization code from EVE Online SSO |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"code": {
"description": "Authorization code from EVE Online SSO",
"type": "string"
}
},
"required": [
"code"
],
"type": "object"
}