Provides a tool to generate Stripe Checkout URLs for purchasing platform credits, enabling users to manage their balance and pay for AI service calls.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Owlvin MCP Servershow me all available AI tools and my current credit balance"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Owlvin MCP Server
MCP server for the Owlvin platform — one install, every AI tool.
Works with Claude Code, Gemini CLI, Codex, and any MCP-compatible agent.
Install
pip install owlvin-mcpSet your API key
export OWLVIN_API_KEY=ow_live_your_key_hereOr create a config file:
mkdir -p ~/.config/owlvin
echo '{"api_key": "ow_live_your_key_here"}' > ~/.config/owlvin/config.jsonGet a key:
curl -X POST https://whoisgloom--owlvin-platform-web.modal.run/v1/keys \
-H "Content-Type: application/json" \
-d '{"email": "you@example.com"}'Add to your agent
Claude Code
claude mcp add owlvin -- python -m owlvin_mcpOr add to .claude/mcp.json:
{
"mcpServers": {
"owlvin": {
"command": "python",
"args": ["-m", "owlvin_mcp"],
"env": {
"OWLVIN_API_KEY": "ow_live_your_key_here"
}
}
}
}Gemini CLI
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"owlvin": {
"command": "python",
"args": ["-m", "owlvin_mcp"],
"env": {
"OWLVIN_API_KEY": "ow_live_your_key_here"
}
}
}
}OpenAI Codex
codex --mcp-config mcp.jsonWith mcp.json:
{
"mcpServers": {
"owlvin": {
"command": "python",
"args": ["-m", "owlvin_mcp"]
}
}
}Tools
owlvin_services
List all available services and pricing on the platform.
No parameters.
owlvin_credits
Check your credit balance and usage.
No parameters.
owlvin_buy_credits
Get a Stripe Checkout URL to buy credits.
Parameter | Type | Description |
| int | 500 ($5), 2500 ($25 + $5 bonus), or 10000 ($100 + $30 bonus) |
owlvin_call
Call any service through the platform. Billing and auth handled automatically.
Parameter | Type | Description |
| string | Service slug (e.g. "drumsplit") |
| string | Operation name (e.g. "full", "drumbus") |
| string | JSON string with operation parameters. Default: "{}" |
owlvin_pricing
Show credit packages and per-call costs.
No parameters.
Config
Environment variables (take priority):
Variable | Description |
| Your platform API key |
| Override API URL (default: Modal deployment) |
Config file (~/.config/owlvin/config.json):
{
"api_key": "ow_live_your_key_here",
"api_url": "https://whoisgloom--owlvin-platform-web.modal.run"
}License
MIT