Metadata-Version: 2.4
Name: devopness-mcp-server
Version: 0.0.39
Summary: A Model Context Protocol (MCP) server that uses Devopness to allow AI Agents to provision infrastructure and deploy any app to any cloud
Project-URL: homepage, https://www.devopness.com
Project-URL: repository, https://github.com/devopness/devopness/tree/main/packages/ai/mcp-server
Project-URL: changelog, https://github.com/devopness/devopness/blob/main/packages/ai/mcp-server/CHANGELOG.md
Author: Devopness (https://www.devopness.com)
License-Expression: MIT
Keywords: API Client,Cloud Engineering,Cloud Infrastructure,Cloud Platform,Cloud Resource Management,Configuration Management,Deployment Automation,DevOps,Devopness,Infrastructure as Code,Platform Engineering,Python SDK,Server Management,Server Provisioning,Utilities,Zero Downtime Deployment
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Communications :: Chat
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Systems Administration
Classifier: Topic :: Utilities
Requires-Python: >=3.12
Requires-Dist: devopness>=2.1.8
Requires-Dist: fastmcp<3,>=2.14.4
Requires-Dist: python-dotenv>=1.2.1
Description-Content-Type: text/markdown

# Devopness - MCP Server

This is the source code for the Devopness MCP Server - <https://mcp.devopness.com/mcp/>

## Quick Start - Connect to Production Server

The easiest way to get started is to connect directly to our hosted MCP server.

### AI-Powered IDEs (Cursor, VSCode, Windsurf, etc.)

Add the Devopness MCP server to your IDE's configuration file:

#### Cursor (~/.cursor/mcp.json)

```json
{
  "mcpServers": {
    "devopness": {
      "url": "https://mcp.devopness.com/mcp/",
    }
  }
}
```

#### VSCode (~/.config/Code/User/settings.json)

```json
{
  "mcp": {
    "servers": {
      "devopness": {
        "type": "http",
        "url": "https://mcp.devopness.com/mcp/",
      }
    }
  }
}
```

## Development & Testing

To contribute with improvements to this package, follow instructions on [CONTRIBUTING.md](CONTRIBUTING.md).
