ivedaai-mcp-server
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., "@ivedaai-mcp-serverlist the cameras that are currently offline"
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.
ivedaai-mcp-server
An MCP server for the IvedaAI video analytics API. Point an MCP client — Claude Desktop, Claude Code, or anything else that speaks the protocol — at your IvedaAI deployment and drive it in natural language: search footage, manage cameras and alert rules, run analysis jobs, work with face and licence-plate watchlists.
316 API operations are exposed as 63 tools, one per resource type. See why.
Quickstart
Add this to your MCP client's configuration. Nothing to install first — npx fetches it.
{
"mcpServers": {
"ivedaai": {
"command": "npx",
"args": ["-y", "ivedaai-mcp-server"],
"env": {
"IVEDAAI_BASE_URL": "https://ivedaai.example.com",
"IVEDAAI_USERNAME": "your-username",
"IVEDAAI_PASSWORD": "your-password"
}
}
}
}Where that file lives:
client | path |
Claude Desktop (macOS) |
|
Claude Desktop (Windows) |
|
Claude Code |
|
Restart the client, and ask it something like "list the cameras that are currently offline".
Try it without a client:
IVEDAAI_BASE_URL=https://ivedaai.example.com \
IVEDAAI_USERNAME=you IVEDAAI_PASSWORD=secret \
npx -y ivedaai-mcp-serverIt speaks JSON-RPC over stdin/stdout and logs a startup line to stderr. --help prints the
configuration reference; --version prints the version.
Related MCP server: Discovery Engine MCP Server
Read-only first
If you are evaluating this, or connecting it to anything you would not want to write to, start here:
"env": { "IVEDAAI_READ_ONLY": "true", "IVEDAAI_BASE_URL": "…", "IVEDAAI_USERNAME": "…", "IVEDAAI_PASSWORD": "…" }Every non-GET is withheld from the tool list entirely rather than merely refused, and it roughly halves what the tool descriptions cost on connect.
Configuration
Only the first three are required.
Variable | Default | Description |
| — | Origin of your IvedaAI server, e.g. |
| — | IvedaAI account username. |
| — | IvedaAI account password. |
|
|
|
|
|
|
|
| Masks credential-shaped fields (keys, secrets, passphrases) in responses. |
|
|
|
|
| Per-request timeout, including reading the response body. Several IvedaAI endpoints block rather than failing fast when a camera is unreachable, so this matters. |
|
| Response body bytes read before truncating. |
| — | Sent as HTTP Basic auth on the token request, if your deployment requires client credentials. |
|
|
|
| bundled | Path to an alternate OpenAPI 3 document, if your deployment's API differs from the bundled one. |
Copy .env.example if you prefer a file.
Authentication
OAuth2 password grant against POST {base}/ainvr/api/oauth2/token. The server logs in on first use,
caches the access token, and refreshes it as it nears expiry. Note that the token endpoint is rate
limited: a client that starts a fresh process per request will hit it.
Destructive operations
Twenty of this API's DELETEs take no id in the path — DELETE /api/cameras versus
DELETE /api/cameras/{cameraId}. The only subject would come from an optional request body, and what
the API does when that body is omitted is not specified anywhere. One character of difference, and
the mistake cannot be undone.
They are withheld by default: absent from the tool descriptions and the operation enum, and
refused with an explanation naming the single-record alternative if a client sends one anyway. Set
IVEDAAI_ALLOW_COLLECTION_DELETE=true to permit them. IVEDAAI_READ_ONLY=true overrides that.
See SECURITY.md for the rest of the defaults, and for what leaves your deployment.
Using it
Every tool takes an operation and the arguments that operation needs:
{ "operation": "GET /api/cameras", "query": { "size": 20, "nameContains": "lobby" } }Usage guide — calling conventions and worked workflows: onboarding cameras, alert rules, analysis jobs, face and licence-plate watchlists.
Tool reference — every tool, operation and parameter.
Design and behaviour — why one tool per resource type, what the server does about partial updates the API silently discards, and the response format.
If a model needs the exact shape of a request body, ivedaai_get_schema returns it on demand rather
than every tool description carrying it.
Requirements
Node 20.18.1 or newer, and an IvedaAI 10.0 deployment. The bundled API document is 10.0; point
IVEDAAI_SWAGGER_PATH at your own if you run something else.
Contributing
See CONTRIBUTING.md. Upgrading the API document?
npm run diff:spec -- --against <new-spec.json> reports what changed and, more usefully, whether
anything this repo records now points at an operation that no longer exists.
License
MIT — see LICENSE.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityDmaintenanceAn MCP server that helps developers integrate Vonage API capabilities by providing AI-assisted access to Vonage documentation through specialized search functionality.1
- Flicense-qualityDmaintenanceAn MCP server that enables natural language interaction with Google's Discovery Engine API, allowing users to search, recommend, and manage data through conversational interfaces.
- Alicense-qualityAmaintenanceMCP server for storing, managing, and analyzing IETF vCon (Virtual Conversation) data with AI assistants.134MIT
- Alicense-qualityDmaintenanceMCP server for fal model discovery, execution, pricing, and local media processing, enabling AI model workflows via natural language.125MIT
Related MCP Connectors
MCP server for AI access to Swagger by SmartBear.
MCP server for Google Veo AI video generation
A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/WillORepO/ivedaAI-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server