Operations | Monitoring | ITSM | DevOps | Cloud

CircleCI MCP server: Natural language CI for AI-driven workflows

The pace of software development has changed. With AI coding assistants now embedded into engineering workflows, developers are building faster, shipping sooner, and writing more code than ever before. But as velocity increases, so does the complexity of keeping that code running. When builds fail, developers need answers fast. They need clarity, context, and actionable feedback right where they’re working.

How to use LLMs to generate test data (and why it matters more than ever)

The way software is written is changing fast. In the past few years, AI coding assistants and large language models (LLMs) have gone from novelty to necessity for many developers. Tools like Cursor, ChatGPT, and custom in-house models are helping teams generate boilerplate, scaffold features, and even build entire apps within minutes. It’s exciting. But it also raises the stakes. When code is written faster, it’s deployed faster.

Benchmarking Kotlin Coroutines performance with CircleCI

A benchmark can be interpreted as a standard of comparison used to assess something. In everyday life, for example, when we want to buy a new cellphone and want to know which one is faster, we can see the speed test (benchmark) by measuring how fast the cellphone opens applications or runs games. From there, we can compare which cellphone is better based on the numbers produced.

Hands-on guide to microservices unit testing with CI/CD

As microservices architectures dominate modern application development, the ability to test, secure, and automate their deployment has become a vital skill. In this guide, you’ll learn how to: Let’s first set the stage by briefly exploring the foundational concepts of CI/CD and DevOps, which underpin the automation and agility required in development workflows.

What is Argo CD?

Argo CD is a declarative continuous delivery (CD) tool for Kubernetes. Argo CD pulls Kubernetes configurations (such as manifests, Helm charts, and Kustomize overlays) from a Git repository and applies them to a Kubernetes cluster. With Argo CD, developers can automatically deploy changes to their Kubernetes environments by updating their Git repository. Argo CD continuously monitors Kubernetes deployments and ensures their state matches the configuration declared in Git.

Machine learning vs AI: Key differences and how they work together

Machine learning (ML) and artificial intelligence (AI) are often used interchangeably in tech discussions, yet they represent distinct concepts with important differences. While AI refers to the broader field of creating machines capable of intelligent behavior that mimics human capabilities, machine learning is a specific subset of AI focused on developing algorithms that allow computers to learn from and make predictions based on data.

7 tips for effective system prompting: A developer's guide to building better AI applications

As AI becomes increasingly central to modern software development, the ability to craft effective system prompts has emerged as a crucial skill. Whether you’re building a code generation tool, creating a chatbot, or developing AI-powered features, your success largely depends on how well you can communicate with AI models through prompts. At CircleCI, we’ve spent countless hours working with developers who are integrating AI into their applications.

Using CircleCI to test and deploy Python serverless functions on Microsoft Azure

Serverless computing simplifies app development by abstracting away server management. Azure Functions provides a robust platform for event-driven, on-demand code execution. In this tutorial, we’ll create and deploy a Python-based Azure Function—one that parses incoming JSON—using CircleCI. For a more granular and enable programmatic access to Azure resources, we’ll use service principal for secure authentication and the Azure CLI orb to streamline our CI/CD pipeline.

Automating CSS code quality in front-end projects with Stylelint and CircleCI

Cascading Style Sheets (CSS) is the language used by developers to apply styles to documents written in a markup language. In front-end development, enforcing consistent CSS code quality is crucial: poorly written CSS can lead to issues ranging from poor maintainability, unexpected bugs, and inconsistent designs. One effective way to ensure CSS code quality is using a linter such as Stylelint.