Owlvin MCP Server
Enables AI agents to access a wide range of AI tools and services through the Owlvin platform with a single integration. It manages authentication and billing automatically, allowing users to list available services, check credit balances, and execute specialized API calls.
README
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-mcp
Set your API key
export OWLVIN_API_KEY=ow_live_your_key_here
Or create a config file:
mkdir -p ~/.config/owlvin
echo '{"api_key": "ow_live_your_key_here"}' > ~/.config/owlvin/config.json
Get 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_mcp
Or 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.json
With 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 |
|---|---|---|
amount_cents |
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 |
|---|---|---|
service |
string | Service slug (e.g. "drumsplit") |
operation |
string | Operation name (e.g. "full", "drumbus") |
input_data |
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 |
|---|---|
OWLVIN_API_KEY |
Your platform API key |
OWLVIN_API_URL |
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
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.