Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| OWLVIN_API_KEY | Yes | Your Owlvin platform API key | |
| OWLVIN_API_URL | No | Override API URL (default: Modal deployment) |
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| owlvin_services | List all available services on the Owlvin platform with pricing. Returns a list of services, each with its operations and per-call cost. Use this to discover what tools are available before calling them. |
| owlvin_credits | Check your Owlvin platform credit balance and usage. Returns credits remaining (in cents), account tier, total API calls, and total spent. |
| owlvin_buy_credits | Get a Stripe Checkout URL to buy platform credits. Args: amount_cents: Amount in cents. Valid options: 500 ($5 = $5 credits), 2500 ($25 = $30 credits, +$5 bonus), 10000 ($100 = $130 credits, +$30 bonus). Returns a checkout URL. Open it in a browser to complete payment. Credits are added automatically after payment. |
| owlvin_call | Call any service on the Owlvin platform. This is the universal API gateway. Billing, rate limiting, and auth are handled automatically. Use owlvin_services first to see available services and operations. Args: service: Service slug (e.g. "drumsplit"). operation: Operation name (e.g. "full", "drumbus"). input_data: JSON string with operation-specific parameters. Default: "{}". Returns the service response. Cost is deducted from your credit balance automatically. |
| owlvin_pricing | Show credit packages and pricing for the Owlvin platform. Returns available credit packages with prices, bonuses, and per-call costs for each service. |
| owlvin_aeo_scan | Scan an MCP server and score its agent discoverability (AEO — Agent Engine Optimization). Checks server-card.json, agents.json, OpenAPI spec, tool description quality, and registry presence on Smithery, PyPI, and GitHub. Returns a score (0-100), letter grade, and specific recommendations to improve discoverability. Args: url: The MCP server's base URL to scan (e.g. "https://api.example.com"). Returns a full AEO report with score, grade, issues found, and recommendations. |
| owlvin_aeo_optimize | Generate optimized metadata files to boost an MCP server's agent discoverability. Scans the server, then generates ready-to-use server-card.json, agents.json, and improved tool descriptions. Copy these files to your server to improve your AEO score. Args: url: The MCP server's base URL to optimize (e.g. "https://api.example.com"). Returns generated metadata files and projected score improvement. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |