Skip to main content
Glama
whoisgloom

Owlvin MCP Server

by whoisgloom

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
OWLVIN_API_KEYYesYour Owlvin platform API key
OWLVIN_API_URLNoOverride API URL (default: Modal deployment)

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
owlvin_servicesA

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_creditsA

Check your Owlvin platform credit balance and usage.

Returns credits remaining (in cents), account tier, total API calls, and total spent.

owlvin_buy_creditsA

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_callA

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_pricingB

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_scanA

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_optimizeA

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

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 7 tools

Disambiguation4/5

Most tools have distinct purposes: scanning, optimizing, checking credits, buying credits, listing services, calling services, and checking pricing. However, owlvin_services and owlvin_pricing could be slightly confused as both relate to service discovery and costs, though their focuses differ (services vs. credit packages).

Naming Consistency5/5

All tool names follow a consistent snake_case pattern with the 'owlvin_' prefix, and they use clear verbs like scan, optimize, buy, call, check, and list. This uniformity makes the set predictable and easy to navigate.

Tool Count5/5

With 7 tools, the server is well-scoped for its purpose of managing and optimizing MCP server discoverability and platform usage. Each tool serves a specific function without redundancy, covering scanning, optimization, billing, service discovery, and API calls.

Completeness4/5

The toolset covers core workflows: scanning and optimizing AEO, managing credits, discovering and calling services, and checking pricing. A minor gap is the lack of a tool for managing account settings or viewing usage history beyond credits, but agents can work around this with the existing tools.