Build your AI stack
Tools, MCP servers, and skills that work together — from editor to production.
AI Coding Tools
View all →ChatGPT
ChatGPT is a large language model-based chatbot developed by OpenAI, launched in November 2022. It uses the GPT-4 architecture to generate human-like text responses across conversation formats. The model supports multi-modal inputs including text, images, and voice interactions. A free tier is available with GPT-3.5, while ChatGPT Plus provides access to GPT-4 with faster response times and plugin capabilities. It serves as a versatile tool for writing, analysis, coding assistance, and creative tasks.
Gemini
Gemini is Google's family of multimodal AI models designed to compete with OpenAI's GPT series. Formerly known as Bard, it rebranded to Gemini in 2024 and directly integrates with Google services. The Ultra 1.0 model achieved state-of-the-art performance on multiple benchmarks. Gemini is available through the Google AI app, web interface, and integrates with Gmail, Docs, and other Google Workspace applications.
Claude
Claude is Anthropic's AI assistant based on the Constitutional AI and RLHF-aligned methodology. Launched in 2023, Claude emphasizes helpful, harmless, and honest interactions. It supports extremely long context windows of up to 200K tokens, making it effective for analyzing lengthy documents. Claude 3.5 Sonnet represents the mid-tier model with strong coding and reasoning capabilities. The iOS app and web interface provide easy access across devices.
DeepSeek
DeepSeek is a Chinese AI company that gained prominence in 2025 with its DeepSeek-V3 model, achieving performance comparable to leading US models at significantly lower training costs. The company released DeepSeek-R1 in January 2025, an open-source reasoning model that competes with OpenAI's o1. DeepSeek's models are available through their web interface, API, and have been integrated into various applications. Their open-source approach has democratized access to frontier-level AI capabilities.
Cursor
Cursor is an AI-first code editor built on VS Code, launched in 2023 by Anysphere. It integrates AI capabilities directly into the coding workflow with features like code completion, natural language commands, and pair programming. Cursor 0.5 introduced Agent capabilities that can autonomously modify codebases. The editor supports Python, JavaScript, TypeScript, Go, Rust, and other major languages. It offers a free tier with 1000 code completions and paid plans for extended usage.
GitHub Copilot
GitHub Copilot is Microsoft's AI coding assistant integrated directly into IDEs like VS Code, JetBrains, and Vim. Powered by OpenAI's GPT-4 and specialized code models, it provides real-time code suggestions, entire function implementations, and documentation generation. Copilot Chat enables conversational debugging and code explanation. Launched in 2021 as a technical preview, it became generally available in 2022. Business plans offer team management, policy controls, and SAML SSO integration.
Windsurf
Windsurf is an AI-powered code editor by Codeium, launched in 2024. Its signature feature is Cascade, a chat interface that maintains project context across editing sessions. Windsurf distinguishes itself with SUPERCLINE, a context engine that tracks cursor position and project state for highly relevant suggestions. The editor is built on the same foundation as Codeium's enterprise tooling, emphasizing speed and privacy. A free tier exists alongside Pro and Enterprise plans.
Midjourney
Midjourney is an independent AI image generation lab that operates primarily through a Discord bot. Launched in 2022, it produces highly artistic and stylized images from text prompts. Users interact via Discord commands, with generation happening on Midjourney's servers. Version 6 (V6) released in late 2024 offers improved coherence, text rendering in images, and photorealism capabilities. The platform has developed a distinctive aesthetic that has influenced digital art and design communities.
MCP Servers
More →piLoci MCP
piLoci MCP is a self-hosted memory server for AI agents that exposes project-scoped memory storage and retrieval through the Model Context Protocol. Built to run on Raspberry Pi 5, it provides semantic recall, project listing, and user identity tools. Teams connect Claude Desktop, Codex, and other MCP clients to share persistent context without sending memory data to cloud services.
Cloudflare MCP
Bridges AI agents to Cloudflare Workers, KV storage, R2 object storage, and D1 databases for edge deployment inspection and management. Agents can check Workers status, inspect KV namespaces, query D1 databases, and monitor R2 buckets directly from the coding environment.
Grafana MCP
Exposes Grafana dashboards, alerts, and time-series data to AI agents for reading application health and correlating incidents with code changes. Agents can query metrics, inspect alert rules, and fetch panel data for debugging. Supports Grafana Cloud and self-hosted instances.
Agent Protocol MCP
Implements the Agent Protocol standard enabling MCP clients to coordinate with external agent frameworks using shared task, step, and artifact schemas. Useful when composing multiple agents where one agent hands off work to specialized agents. Supports agent registration and state tracking.
Azure MCP
Connects AI agents to Azure resources including App Service, Cosmos DB, Key Vault, and Logic Apps for configuration inspection and diagnostic retrieval. Developers can query Azure settings and logs without Azure Portal. Uses Azure CLI credentials for authentication.
Slackbot MCP
Extends Slack integration with message drafting, channel management, and workflow trigger capabilities for proactive team notifications. Unlike read-only Slack MCP, this enables agents to send summaries, create channels, and initiate workflows on behalf of users. Uses Slackbot token.
Claude Code Skills
More →Structured AI meeting notes
Converts raw meeting transcripts into structured, actionable notes with decision logs, assigned action items, and key context preserved for future AI retrieval. This skill bridges the gap between what was discussed in a meeting and what AI agents need to know when acting on outcomes days or weeks later.
Incident response
Structured process for handling production incidents from detection to resolution and post-mortem. Covers severity assessment using P0-P3 grading, team coordination with a designated incident commander, communication templates for stakeholders and users, and structured post-mortem requirements to drive organizational learning from every significant outage.
Production debugging
Diagnoses live production incidents using log triage, metric spike correlation, deploy window filtering, and safe reproduction steps without causing further disruption. Production debugging applies systematic debugging principles in a live environment where the cost of wrong actions is high and the ability to reproduce the issue is limited.
Safe dependency upgrades
A structured checklist for upgrading npm, pip, Cargo, or similar dependency managers without breaking production. This covers changelog analysis, semver risk assessment, lockfile handling, and smoke testing so that routine dependency updates do not become sources of production incidents.
RAG pipeline construction
Builds production-ready retrieval-augmented generation pipelines with deliberate chunking strategies, embedding model selection, vector store configuration, hybrid search blending, and reranking so agents answer from your documents with reduced hallucination and cited sources. This skill focuses on the engineering decisions that separate a working prototype from a production-quality RAG system.
Multi-agent handoff design
Designs clean handoff protocols between specialized agents so work passes between planner, coder, reviewer, and executor agents without losing context, creating circular dependencies, or introducing race conditions. Handoff design treats agent-to-agent communication as an API contract with versioning, error handling, and explicit acknowledgment requirements.