Copy-paste ready content for submitting the Mavvrik MCP connector to the Claude Code plugin marketplace, OpenAI platform, and Microsoft Copilot Studio.
1. Claude Code Plugin Marketplace
The marketplace is hosted directly in the cloudwizio/mavvrik-mcp GitHub repository. No separate submission process — users add it with a slash command.
How Users Install It
# Step 1 — set credentials in shell profile
export MVK_API_TOKEN=your_api_token
export MVK_TENANT_ID=your_tenant_id
# Step 2 — add the marketplace
/plugin marketplace add cloudwizio/mavvrik-mcp
# Step 3 — install the plugin
/plugin install mavvrik-mcp@mavvrik
marketplace.json (lives at .claude-plugin/marketplace.json in the repo)
{
"name": "mavvrik",
"owner": {
"name": "Mavvrik",
"email": "support@mavvrik.ai"
},
"description": "Official Mavvrik plugin — connect Claude Code to your live cloud cost intelligence platform.",
"plugins": [
{
"name": "mavvrik-mcp",
"displayName": "Mavvrik Cloud Cost Intelligence",
"source": {
"source": "github",
"repo": "cloudwizio/mavvrik-mcp"
},
"description": "Query your live cloud costs with natural language. Analyze AWS, Azure, GCP, OCI, and Kubernetes spend directly in Claude Code via the Mavvrik Cost Intelligence Platform.",
"version": "1.0.0",
"author": { "name": "Mavvrik", "email": "support@mavvrik.ai" },
"homepage": "https://mavvrik.dev/docs/mcp",
"repository": "https://github.com/cloudwizio/mavvrik-mcp",
"license": "proprietary",
"keywords": ["finops", "cloud-cost", "kubernetes", "aws", "azure", "gcp", "oci"],
"category": "developer-tools",
"tags": ["finops", "cloud", "cost", "kubernetes", "aws", "azure", "gcp", "oci"]
}
]
}
plugin.json (lives at .claude-plugin/plugin.json in the repo)
{
"name": "mavvrik-mcp",
"displayName": "Mavvrik Cloud Cost Intelligence",
"description": "Query your live cloud costs with natural language. Analyze AWS, Azure, GCP, OCI, and Kubernetes spend directly in Claude Code via the Mavvrik Cost Intelligence Platform.",
"version": "1.0.0",
"author": { "name": "Mavvrik", "email": "support@mavvrik.ai" },
"homepage": "https://mavvrik.dev/docs/mcp",
"repository": "https://github.com/cloudwizio/mavvrik-mcp",
"license": "proprietary",
"keywords": ["finops", "cloud-cost", "kubernetes", "aws", "azure", "gcp", "oci", "cost-intelligence"],
"mcpServers": {
"mavvrik": {
"type": "http",
"url": "https://mcp.mavvrik.dev/mcp",
"headers": {
"Authorization": "Bearer ${MVK_API_TOKEN}",
"tenant": "${MVK_TENANT_ID}"
}
}
}
}
Both files are already committed to the repo. Once the repo is public, the marketplace is live with no further steps.
2. OpenAI Platform — App Info
For the app at platform.openai.com/apps-manage → App Info section.
|
Field |
Value |
|---|---|
|
Name |
Mavvrik Cloud Cost Intelligence |
|
Website |
https://mavvrik.dev/docs/mcp |
|
Privacy policy |
https://mavvrik.dev/privacy |
|
Support email |
support@mavvrik.ai |
|
Category |
Developer Tools / Productivity |
Short Description
Query live cloud costs with natural language — AWS, Azure, GCP, OCI, and Kubernetes spend via the Mavvrik platform.
Long Description
Mavvrik is an AI-native cloud cost intelligence platform. This MCP connector gives ChatGPT direct, read-only access to your live cloud spend data — no CSV exports, no copy-pasting.
Ask questions like:
- "What's my total AWS spend this month by service?"
- "Show me the top 5 Kubernetes namespaces by cost"
- "How has my Azure spending trended over the last 90 days?"
- "Which EC2 instances in us-east-1 are costing the most?"
Supports AWS, Azure, GCP, OCI, and Kubernetes cost analysis. All queries are read-only — the connector cannot modify your cloud resources or billing data.
Requirements: a Mavvrik account, an API token, and your Tenant ID. Set these as custom headers when configuring the MCP server:
URL: https://mcp.mavvrik.dev/mcp
Authorization: Bearer <your_token>
tenant: <your_tenant_id>
MCP Server Configuration
|
Field |
Value |
|---|---|
|
Server URL |
https://mcp.mavvrik.dev/mcp |
|
Auth type |
Bearer token (header: Authorization) |
|
Additional header |
tenant: <tenant_id> |
|
Required scope |
mcp:graphql |
3. Microsoft Copilot Studio
For the Copilot Studio Actions connector listing (Power Platform / AppSource).
|
Field |
Value |
|---|---|
|
Connector name |
Mavvrik Cloud Cost Intelligence |
|
Publisher |
Mavvrik |
|
Support email |
support@mavvrik.ai |
|
Privacy URL |
https://mavvrik.dev/privacy |
|
Website |
https://mavvrik.dev |
|
Categories |
Productivity, Finance, IT & Management |
Short Description
Query live cloud costs with natural language via the Mavvrik Cost Intelligence Platform.
Long Description
Mavvrik is an AI-native cloud cost intelligence platform. This connector gives Copilot Studio agents direct, read-only access to your live cloud spend data across AWS, Azure, GCP, OCI, and Kubernetes.
Use it to build FinOps agents that can answer:
- "What's my total cloud spend this month by provider?"
- "Show me the top 5 Kubernetes namespaces by cost"
- "How has my AWS spending trended over the last 90 days?"
- "Which resources are costing the most in production?"
All queries are read-only — the connector cannot modify cloud resources or billing data. Requires a Mavvrik account and API credentials.
MCP Server Configuration
|
Field |
Value |
|---|---|
|
Server URL |
https://mcp.mavvrik.dev/mcp |
|
Authentication type |
OAuth 2.0 |
|
Authorization server |
https://oauth.mavvrik.dev |
|
Scope |
mcp:graphql |
|
Custom header |
tenant: <tenant_id> |