# Revenium MCP Server
**Connect AI agents to Revenium**
Once you've connected your AI applications to Revenium using any of the supported middleware libraries or via direct API integration, this MCP server allows agents to directly interact with your Revenium account. Connect Claude, OpenAI, or any MCP-compatible AI assistant to Revenium to configure AI cost alerts & tracking as well as usage-based billing for AI products.
## AI Cost Tracking & Alerting - **Never Be Surprised by Unexpected AI Costs Again**
- Ask AI agents to **set up AI cost alerts to avoid unexpected costs**
- Ask AI agents to track their own costs with Revenium as they carry out actions within your application
- Ask Revenium to **calculate AI cost & usage trends over time** and set up alerts to immediately send slack or email notifications when anomalies occur
- Quickly **investigate the reasons for AI cost spikes**. Identify abnormal changes in spending by agent, API key, product, customer, and more.
- Use AI agents to **integrate Revenium metering into your applications** if not using Revenium's pre-built SDKs
## Usage-based Billing & Chargebacks (Optional)
If or when you're ready to turn AI costs into AI revenue, the Revenium MCP will be there to help quickly make the transition.
- Ask your agent to manage all elements of usage-based billing & cost chargebacks
- Use agents to manage products, customers, subscriptions, and subscriber credentials
[](https://github.com/revenium/revenium-mcp)
[](LICENSE)
[](https://modelcontextprotocol.io)
---
## AI Cost Analytics & Alerting Tools
The MCP provides the appropriate tools for each use case depending on your chosen startup profile. Below is a summary:
### 🚨 **Alert Management**
Set up intelligent monitoring for costs, usage, and performance metrics.
- Create budget threshold and spike detection alerts
- Get notified via Slack or email when patterns change
- *Example: "Alert me when monthly costs for Anthropic exceed $500"*
- *Example: "Create a spike detection alert when token use exceeds 1,500,000 tokens per hour"*
- *Example: "Alert when my error rate exceeds 5% every 5 minutes"*
- *Example: "Set up cost per transaction monitoring so any single AI call costing more than $1.50 triggers an immediate Slack alert"*
-
### 📱 **Slack Integration**
- *Example: "Set up a Slack notification channel for Revenium alerts"*
- *Example: "Add a new slack channel for all customer spending alerts"*
- *Example: "Send all product spending anaomalies to the Slack channel #product-spend-alerts."*
### 📈 **AI Business Analytics**
Analyze costs, usage patterns, and performance.
- Cost trend analysis and breakdowns
- *Example: "Summarize my costs for the last day/week/month and highlight any anomalies"*
- *Example: "Explain why costs grew last week"*
- *Example: "Show me a breakdown of AI costs last month by provider/customer/product/agent"*
#### Common Use Cases
**"Why did my costs spike yesterday?"**
- *"Analyze cost anomalies in the last 7 days focusing on abnormal spending by model or API key"*
- *"Detect what caused my cost increase yesterday. Only focus on anomalies larger than $20 vs. the norm"*
**"Find anomalies across all dimensions"**
- *"Show me cost anomalies in the last month across all providers, models, agents, API keys, and customers"*
- *"Analyze all dimensions for cost spikes above $150 in the past 30 days"*
**"Detect small but significant anomalies to identify early changes in behavior before they become large issues"**
- *"Find API key anomalies in the last week using aggressive sensitivity"*
### 📈 **AI Metering Management**
Track AI usage, token consumption, and transaction data with comprehensive integration guidance.
- Get assistance creating a new custom integration from your AI agents to Revenium
- Get comprehensive implementation guidance with working code examples for Python and JavaScript
- Submit AI transaction data and verify successful processing
- *Example: "Get Python integration guide with working code examples for AI transaction metering"*
- *Example: "Get JavaScript integration guide with official npm package references"*
- *Example: "Check the status of transaction tx_12345"*
- *Example: "Help me integrate this python AI function with Revenium's AI metering API"*
- *Example: "Generate test transaction data from our application and ensure all metadata is properly mapped in Revenium."*
---
## 💻 Installation
**Using with Claude Code?** Jump straight to [Using with Claude Code](#For-Claude-Code)
### Prerequisites
- **Python 3.11+** with pip
- **Your Revenium API key**
- **Optional**: [uv/uvx](https://github.com/astral-sh/uv)
### Install Python Package
**Option 1: Installation with uvx**
```bash
# Install uv if you don't have it
pip install uv
uvx revenium-mcp
```
**Option 2: Package Installation in Virtual Environment**
```bash
# Create and activate virtual environment
python -m venv revenium-mcp-env
source revenium-mcp-env/bin/activate # On Windows: revenium-mcp-env\Scripts\activate
pip install revenium-mcp
```
### Choose Your Profile & Start the Server
The MCP server supports two profiles to match your use case:
#### **Profile Overview**
| Profile | Tools | Target Users | Use Cases |
|---------|-------|--------------|-----------|
| **Starter** | 7 tools | Cost monitoring & alerts | Cost analysis, AI transaction metering |
| **Business** | 15 tools | Product & subscription management, usage-based billing, comprehensive analytics |
Choose your profile by setting the `TOOL_PROFILE` environment variable:
**With uvx:**
```bash
# Starter Profile (7 tools) - Cost monitoring, alerts, AI metering integration
TOOL_PROFILE=starter uvx revenium-mcp
# Business Profile (15 tools) - Usage-based billing & AI Analytics (default)
TOOL_PROFILE=business uvx revenium-mcp
# or simply:
uvx revenium-mcp
```
**With pip installation:**
```bash
# Starter Profile (7 tools) - Cost monitoring, alerts, AI metering integration
TOOL_PROFILE=starter python -m revenium_mcp_server
# Business Profile (15 tools) - Usage-based billing & AI Analytics (default)
TOOL_PROFILE=business python -m revenium_mcp_server
# or simply:
python -m revenium_mcp_server
```
---
### For Claude Code
**Option 1: Installation with uvx**
```bash
# Install uv if you don't have it
pip install uv
# One-shot installation
claude mcp add revenium-platform \
-e REVENIUM_API_KEY=your_api_key_here \
-- uvx revenium-mcp
```
**Option 2: Installation with python virtual environment**
```bash
# Create and activate virtual environment
python -m venv revenium-mcp-env
source revenium-mcp-env/bin/activate # On Windows: revenium-mcp-env\Scripts\activate
# Install package
pip install revenium-mcp
# Add to Claude Code using venv python
claude mcp add revenium-platform \
-e REVENIUM_API_KEY=your_api_key_here \
-- ./revenium-mcp-env/bin/python -m revenium_mcp
```
---
### For Cursor / Augment IDE (or any IDE allowing MCP JSON import)
**Install uv:**
pip install uv
**Configure MCP server:**
1. Open Cursor/Augment settings (Ctrl/Cmd + ,) | (Cmd + Shift + P for Augment)
2. Navigate to Extensions → MCP or create `~/.cursor/mcp.json` | for Augment, import JSON below into MCP settings
3. Add server configuration:
**Standard Configuration:**
```json
{
"mcpServers": {
"revenium": {
"command": "uvx",
"args": ["revenium-mcp"],
"env": {
"REVENIUM_API_KEY": "your_api_key_here"
}
}
}
}
```
### Overriding Default Values in IDE / MCP Client (Advanced Use Cases)
You can override the automatically loaded values if needed:
**When you might need overrides:**
- Multi-tenant environments: Switching organizations in a multi-tenant Revenium installation
- Custom email preferences: Change default email address for alert configuration
- Custom API endpoints: When not using Revenium's default API endpoints
### Required Configuration
| Variable | Required | Description | Example |
|----------|----------|-------------|---------|
| `REVENIUM_API_KEY` | ✅ | Your account API key from the API Keys page in Revenium | `hak_1234567890abcdef` |
### Automatically Loaded Values
These values are loaded from your account and can be overridden if needed:
| Variable | Override When | Example |
|----------|---------------|---------|
| `REVENIUM_TEAM_ID` | Multi-tenant environments | `ABC123x` |
| `REVENIUM_TENANT_ID` | Operating on behalf of different tenant | `DEF456n` |
| `REVENIUM_OWNER_ID` | Non-primary user scenarios | `GHI789z` |
| `REVENIUM_DEFAULT_EMAIL` | Custom alert email preferences | `alerts@company.com` |
### Optional Configuration
| Variable | Required | Description | Example |
|----------|----------|-------------|---------|
| `REVENIUM_BASE_URL` | ⚪ | API endpoint URL (defaults to main Revenium instance) | `https://api.revenium.io/meter` |
| `REVENIUM_APP_BASE_URL` | ⚪ | Defines which Revenium web application instance to use for Slack channel configurations (defaults to main Revenium instance) | `https://ai.revenium.io` |
| `LOG_LEVEL` | ⚪ | Logging verbosity level | `DEBUG` |
| `REQUEST_TIMEOUT` | ⚪ | API request timeout in seconds | `30` |
---
## Usage-Based Billing Tools (Optional)
### 📊 **Product Management**
Create and manage your AI products, pricing tiers, and billing models.
- Design usage-based or subscription pricing
- Design chargeback models so that all AI spending is invoiced to the correct internal department
- Set up free tiers and graduated pricing for SaaS products
- *Example: "Create a Gold Tier AI product with $199 per month base fee plus usage-based pricing that charges 1.10x the actual AI costs"*
- *Example: "Create a new product called 'Smart Analytics' with usage-based pricing"*
- *Example: "Set up a free tier with 1000 API calls, then charge a 25% premium on my AI costs for every call"*
- *Example: "Show me the number of subscribers for each of my products"*
### 👥 **Customer Management**
Handle customer relationships, organizations, and user hierarchies.
- Manage customer or internal organizations used for cost attribution
- Create & manage subscribers (internal or external)
- Track customer usage
- *Example: "List all organizationss and their subscription status"*
### 📋 **Subscription Management**
Control customer subscriptions, billing cycles, and plan changes.
- Create and modify customer subscriptions
- Track subscription analytics
- *Example: "Create a monthly subscription for customer ABC Corp to the product 'analytics-suite'"*
- *Example: "Show me all active subscriptions to the AI Analytics product"*
- *Example: "List subscriptions that are about to expire this month"*
## 🔍 Troubleshooting
#### Authentication Errors
- Verify your API key is correct and active
- Use the diagnostic tool to check configuration status
- Ensure the base URL is correct for your environment
- Check that the `/users/me` endpoint is accessible with your API key
#### Configuration Priority
The system loads configuration values in this priority order:
1. **MCP client JSON configuration `env` section** (highest priority)
2. **System environment variables**
3. **Automatically loaded values** from Revenium's API
Use the `system_diagnostics` tool to see exactly which values are being used from each source.
---
## 📄 License & Support
**License**: MIT License - see [LICENSE](LICENSE) file for details.
**Support Channels**:
- 📧 **Email**: [support@revenium.io](mailto:support@revenium.io)
- 🐛 **Issues**: [GitHub Issues](https://github.com/revenium/revenium-mcp/issues)
---
Raw data
{
"_id": null,
"home_page": null,
"name": "revenium-mcp",
"maintainer": null,
"docs_url": null,
"requires_python": ">=3.11",
"maintainer_email": "Jason Cumberland <jason@revenium.io>",
"keywords": "mcp, revenium, api, ai, assistant, cli, server, model-context-protocol, anthropic, claude",
"author": null,
"author_email": "Jason Cumberland <jason@revenium.io>",
"download_url": "https://files.pythonhosted.org/packages/83/f4/bcc580063d63f61dd4b65a7f1e85b7a15d3de5006ea7731289d8a1bec601/revenium_mcp-0.1.14.tar.gz",
"platform": null,
"description": "# Revenium MCP Server\n\n**Connect AI agents to Revenium**\n\nOnce you've connected your AI applications to Revenium using any of the supported middleware libraries or via direct API integration, this MCP server allows agents to directly interact with your Revenium account. Connect Claude, OpenAI, or any MCP-compatible AI assistant to Revenium to configure AI cost alerts & tracking as well as usage-based billing for AI products.\n\n## AI Cost Tracking & Alerting - **Never Be Surprised by Unexpected AI Costs Again**\n- Ask AI agents to **set up AI cost alerts to avoid unexpected costs**\n- Ask AI agents to track their own costs with Revenium as they carry out actions within your application\n- Ask Revenium to **calculate AI cost & usage trends over time** and set up alerts to immediately send slack or email notifications when anomalies occur\n- Quickly **investigate the reasons for AI cost spikes**. Identify abnormal changes in spending by agent, API key, product, customer, and more.\n- Use AI agents to **integrate Revenium metering into your applications** if not using Revenium's pre-built SDKs\n\n## Usage-based Billing & Chargebacks (Optional)\nIf or when you're ready to turn AI costs into AI revenue, the Revenium MCP will be there to help quickly make the transition.\n\n- Ask your agent to manage all elements of usage-based billing & cost chargebacks\n- Use agents to manage products, customers, subscriptions, and subscriber credentials\n\n[](https://github.com/revenium/revenium-mcp)\n[](LICENSE)\n[](https://modelcontextprotocol.io)\n\n---\n\n## AI Cost Analytics & Alerting Tools\n\nThe MCP provides the appropriate tools for each use case depending on your chosen startup profile. Below is a summary:\n\n### \ud83d\udea8 **Alert Management**\nSet up intelligent monitoring for costs, usage, and performance metrics.\n- Create budget threshold and spike detection alerts \n- Get notified via Slack or email when patterns change\n- *Example: \"Alert me when monthly costs for Anthropic exceed $500\"*\n- *Example: \"Create a spike detection alert when token use exceeds 1,500,000 tokens per hour\"*\n- *Example: \"Alert when my error rate exceeds 5% every 5 minutes\"*\n- *Example: \"Set up cost per transaction monitoring so any single AI call costing more than $1.50 triggers an immediate Slack alert\"*\n- \n### \ud83d\udcf1 **Slack Integration**\n- *Example: \"Set up a Slack notification channel for Revenium alerts\"*\n- *Example: \"Add a new slack channel for all customer spending alerts\"*\n- *Example: \"Send all product spending anaomalies to the Slack channel #product-spend-alerts.\"*\n\n### \ud83d\udcc8 **AI Business Analytics**\nAnalyze costs, usage patterns, and performance.\n- Cost trend analysis and breakdowns\n- *Example: \"Summarize my costs for the last day/week/month and highlight any anomalies\"*\n- *Example: \"Explain why costs grew last week\"*\n- *Example: \"Show me a breakdown of AI costs last month by provider/customer/product/agent\"*\n\n#### Common Use Cases\n\n**\"Why did my costs spike yesterday?\"**\n- *\"Analyze cost anomalies in the last 7 days focusing on abnormal spending by model or API key\"*\n- *\"Detect what caused my cost increase yesterday. Only focus on anomalies larger than $20 vs. the norm\"*\n\n**\"Find anomalies across all dimensions\"** \n- *\"Show me cost anomalies in the last month across all providers, models, agents, API keys, and customers\"*\n- *\"Analyze all dimensions for cost spikes above $150 in the past 30 days\"*\n\n**\"Detect small but significant anomalies to identify early changes in behavior before they become large issues\"**\n- *\"Find API key anomalies in the last week using aggressive sensitivity\"*\n\n\n### \ud83d\udcc8 **AI Metering Management**\nTrack AI usage, token consumption, and transaction data with comprehensive integration guidance.\n- Get assistance creating a new custom integration from your AI agents to Revenium\n- Get comprehensive implementation guidance with working code examples for Python and JavaScript\n- Submit AI transaction data and verify successful processing\n\n- *Example: \"Get Python integration guide with working code examples for AI transaction metering\"*\n- *Example: \"Get JavaScript integration guide with official npm package references\"*\n- *Example: \"Check the status of transaction tx_12345\"*\n- *Example: \"Help me integrate this python AI function with Revenium's AI metering API\"*\n- *Example: \"Generate test transaction data from our application and ensure all metadata is properly mapped in Revenium.\"*\n\n---\n\n## \ud83d\udcbb Installation\n**Using with Claude Code?** Jump straight to [Using with Claude Code](#For-Claude-Code)\n\n### Prerequisites\n\n- **Python 3.11+** with pip\n- **Your Revenium API key**\n- **Optional**: [uv/uvx](https://github.com/astral-sh/uv)\n\n### Install Python Package\n\n**Option 1: Installation with uvx**\n```bash\n# Install uv if you don't have it\npip install uv\nuvx revenium-mcp\n```\n\n**Option 2: Package Installation in Virtual Environment**\n\n```bash\n# Create and activate virtual environment\npython -m venv revenium-mcp-env\nsource revenium-mcp-env/bin/activate # On Windows: revenium-mcp-env\\Scripts\\activate\npip install revenium-mcp\n```\n\n### Choose Your Profile & Start the Server\n\nThe MCP server supports two profiles to match your use case:\n\n#### **Profile Overview**\n\n| Profile | Tools | Target Users | Use Cases |\n|---------|-------|--------------|-----------|\n| **Starter** | 7 tools | Cost monitoring & alerts | Cost analysis, AI transaction metering |\n| **Business** | 15 tools | Product & subscription management, usage-based billing, comprehensive analytics |\n\nChoose your profile by setting the `TOOL_PROFILE` environment variable:\n\n**With uvx:**\n```bash\n# Starter Profile (7 tools) - Cost monitoring, alerts, AI metering integration\nTOOL_PROFILE=starter uvx revenium-mcp\n\n# Business Profile (15 tools) - Usage-based billing & AI Analytics (default)\nTOOL_PROFILE=business uvx revenium-mcp\n# or simply:\nuvx revenium-mcp\n```\n\n**With pip installation:**\n```bash\n# Starter Profile (7 tools) - Cost monitoring, alerts, AI metering integration\nTOOL_PROFILE=starter python -m revenium_mcp_server\n\n# Business Profile (15 tools) - Usage-based billing & AI Analytics (default)\nTOOL_PROFILE=business python -m revenium_mcp_server\n# or simply:\npython -m revenium_mcp_server\n```\n\n---\n### For Claude Code\n\n**Option 1: Installation with uvx**\n```bash\n# Install uv if you don't have it \npip install uv\n\n# One-shot installation\nclaude mcp add revenium-platform \\\n -e REVENIUM_API_KEY=your_api_key_here \\\n -- uvx revenium-mcp\n```\n\n**Option 2: Installation with python virtual environment**\n```bash\n# Create and activate virtual environment\npython -m venv revenium-mcp-env\nsource revenium-mcp-env/bin/activate # On Windows: revenium-mcp-env\\Scripts\\activate\n\n# Install package\npip install revenium-mcp\n\n# Add to Claude Code using venv python\nclaude mcp add revenium-platform \\\n -e REVENIUM_API_KEY=your_api_key_here \\\n -- ./revenium-mcp-env/bin/python -m revenium_mcp\n```\n\n---\n### For Cursor / Augment IDE (or any IDE allowing MCP JSON import)\n\n**Install uv:**\npip install uv\n\n**Configure MCP server:**\n\n1. Open Cursor/Augment settings (Ctrl/Cmd + ,) | (Cmd + Shift + P for Augment)\n2. Navigate to Extensions \u2192 MCP or create `~/.cursor/mcp.json` | for Augment, import JSON below into MCP settings\n3. Add server configuration:\n\n**Standard Configuration:**\n```json\n{\n \"mcpServers\": {\n \"revenium\": {\n \"command\": \"uvx\",\n \"args\": [\"revenium-mcp\"],\n \"env\": {\n \"REVENIUM_API_KEY\": \"your_api_key_here\"\n }\n }\n }\n}\n```\n\n### Overriding Default Values in IDE / MCP Client (Advanced Use Cases)\n\nYou can override the automatically loaded values if needed:\n\n**When you might need overrides:**\n- Multi-tenant environments: Switching organizations in a multi-tenant Revenium installation \n- Custom email preferences: Change default email address for alert configuration\n- Custom API endpoints: When not using Revenium's default API endpoints\n\n### Required Configuration\n\n| Variable | Required | Description | Example |\n|----------|----------|-------------|---------|\n| `REVENIUM_API_KEY` | \u2705 | Your account API key from the API Keys page in Revenium | `hak_1234567890abcdef` |\n\n### Automatically Loaded Values\n\nThese values are loaded from your account and can be overridden if needed:\n\n| Variable | Override When | Example |\n|----------|---------------|---------|\n| `REVENIUM_TEAM_ID` | Multi-tenant environments | `ABC123x` |\n| `REVENIUM_TENANT_ID` | Operating on behalf of different tenant | `DEF456n` |\n| `REVENIUM_OWNER_ID` | Non-primary user scenarios | `GHI789z` |\n| `REVENIUM_DEFAULT_EMAIL` | Custom alert email preferences | `alerts@company.com` |\n\n### Optional Configuration\n\n| Variable | Required | Description | Example |\n|----------|----------|-------------|---------|\n| `REVENIUM_BASE_URL` | \u26aa | API endpoint URL (defaults to main Revenium instance) | `https://api.revenium.io/meter` |\n| `REVENIUM_APP_BASE_URL` | \u26aa | Defines which Revenium web application instance to use for Slack channel configurations (defaults to main Revenium instance) | `https://ai.revenium.io` |\n| `LOG_LEVEL` | \u26aa | Logging verbosity level | `DEBUG` |\n| `REQUEST_TIMEOUT` | \u26aa | API request timeout in seconds | `30` |\n\n\n---\n\n## Usage-Based Billing Tools (Optional)\n\n### \ud83d\udcca **Product Management**\nCreate and manage your AI products, pricing tiers, and billing models.\n- Design usage-based or subscription pricing\n- Design chargeback models so that all AI spending is invoiced to the correct internal department\n- Set up free tiers and graduated pricing for SaaS products\n- *Example: \"Create a Gold Tier AI product with $199 per month base fee plus usage-based pricing that charges 1.10x the actual AI costs\"*\n- *Example: \"Create a new product called 'Smart Analytics' with usage-based pricing\"*\n- *Example: \"Set up a free tier with 1000 API calls, then charge a 25% premium on my AI costs for every call\"*\n- *Example: \"Show me the number of subscribers for each of my products\"*\n\n### \ud83d\udc65 **Customer Management**\nHandle customer relationships, organizations, and user hierarchies.\n- Manage customer or internal organizations used for cost attribution\n- Create & manage subscribers (internal or external)\n- Track customer usage\n\n- *Example: \"List all organizationss and their subscription status\"*\n\n### \ud83d\udccb **Subscription Management**\nControl customer subscriptions, billing cycles, and plan changes.\n- Create and modify customer subscriptions\n- Track subscription analytics\n- *Example: \"Create a monthly subscription for customer ABC Corp to the product 'analytics-suite'\"*\n- *Example: \"Show me all active subscriptions to the AI Analytics product\"*\n- *Example: \"List subscriptions that are about to expire this month\"*\n\n\n## \ud83d\udd0d Troubleshooting\n\n#### Authentication Errors\n- Verify your API key is correct and active\n- Use the diagnostic tool to check configuration status\n- Ensure the base URL is correct for your environment\n- Check that the `/users/me` endpoint is accessible with your API key\n\n#### Configuration Priority\nThe system loads configuration values in this priority order:\n1. **MCP client JSON configuration `env` section** (highest priority)\n2. **System environment variables**\n3. **Automatically loaded values** from Revenium's API\n\nUse the `system_diagnostics` tool to see exactly which values are being used from each source.\n\n---\n\n## \ud83d\udcc4 License & Support\n\n**License**: MIT License - see [LICENSE](LICENSE) file for details.\n\n**Support Channels**:\n- \ud83d\udce7 **Email**: [support@revenium.io](mailto:support@revenium.io)\n- \ud83d\udc1b **Issues**: [GitHub Issues](https://github.com/revenium/revenium-mcp/issues)\n\n---\n",
"bugtrack_url": null,
"license": null,
"summary": "Model Context Protocol (MCP) server for Revenium API monitoring, analytics, and AI spending management",
"version": "0.1.14",
"project_urls": {
"Bug Tracker": "https://github.com/revenium/revenium-mcp/issues",
"Documentation": "https://github.com/revenium/revenium-mcp#readme",
"Homepage": "https://github.com/revenium/revenium-mcp",
"Repository": "https://github.com/revenium/revenium-mcp"
},
"split_keywords": [
"mcp",
" revenium",
" api",
" ai",
" assistant",
" cli",
" server",
" model-context-protocol",
" anthropic",
" claude"
],
"urls": [
{
"comment_text": null,
"digests": {
"blake2b_256": "61694a582aaa16ee73527394bc571bb720ce3c8cf5c6b4b05aed2f8c8617c582",
"md5": "c6e3d8320aeeb9b8197761032ff0f6c6",
"sha256": "9cee90aeee7a1e12f2e1edeeadf7a97fecfed5db23ae6c010df9b35d9aa3b4c4"
},
"downloads": -1,
"filename": "revenium_mcp-0.1.14-py3-none-any.whl",
"has_sig": false,
"md5_digest": "c6e3d8320aeeb9b8197761032ff0f6c6",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": ">=3.11",
"size": 1076653,
"upload_time": "2025-07-08T23:46:26",
"upload_time_iso_8601": "2025-07-08T23:46:26.313843Z",
"url": "https://files.pythonhosted.org/packages/61/69/4a582aaa16ee73527394bc571bb720ce3c8cf5c6b4b05aed2f8c8617c582/revenium_mcp-0.1.14-py3-none-any.whl",
"yanked": false,
"yanked_reason": null
},
{
"comment_text": null,
"digests": {
"blake2b_256": "83f4bcc580063d63f61dd4b65a7f1e85b7a15d3de5006ea7731289d8a1bec601",
"md5": "fc7f61ca7d169ba23129e6ec180449e2",
"sha256": "674b94b4f02ad935c7f41745421d458b6588769435d3e3e1f3f19201e46a17b6"
},
"downloads": -1,
"filename": "revenium_mcp-0.1.14.tar.gz",
"has_sig": false,
"md5_digest": "fc7f61ca7d169ba23129e6ec180449e2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": ">=3.11",
"size": 939677,
"upload_time": "2025-07-08T23:46:27",
"upload_time_iso_8601": "2025-07-08T23:46:27.578865Z",
"url": "https://files.pythonhosted.org/packages/83/f4/bcc580063d63f61dd4b65a7f1e85b7a15d3de5006ea7731289d8a1bec601/revenium_mcp-0.1.14.tar.gz",
"yanked": false,
"yanked_reason": null
}
],
"upload_time": "2025-07-08 23:46:27",
"github": true,
"gitlab": false,
"bitbucket": false,
"codeberg": false,
"github_user": "revenium",
"github_project": "revenium-mcp",
"github_not_found": true,
"lcname": "revenium-mcp"
}