<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>MCP on SoloSoft</title><link>https://www.solosoft.dev/tags/mcp/</link><description>Recent content in MCP on SoloSoft</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Wed, 12 Aug 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://www.solosoft.dev/tags/mcp/index.xml" rel="self" type="application/rss+xml"/><item><title>DeepSeek Harness: The Open-Source Agent Framework Where Everything Is a Plugin</title><link>https://www.solosoft.dev/post/deepseek-harness-everything-is-a-plugin/</link><pubDate>Wed, 12 Aug 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/deepseek-harness-everything-is-a-plugin/</guid><description>&lt;h1 id="deepseek-harness-the-open-source-agent-framework-where-everything-is-a-plugin"&gt;DeepSeek Harness: The Open-Source Agent Framework Where Everything Is a Plugin&lt;/h1&gt;
&lt;p&gt;The formula is everywhere now: &lt;strong&gt;Model + Harness = Agent.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;The model reasons. The harness handles everything else — tool execution, memory, context control, sandboxing, orchestration. And on &lt;a href="https://github.com/deepseek-ai/deepseek-harness"&gt;August 2026&lt;/a&gt;, DeepSeek shipped what might be the most important open-source reference implementation of that formula yet.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;DeepSeek Harness (dsh)&lt;/strong&gt; is the Chinese lab&amp;rsquo;s open-source agent framework: &lt;strong&gt;25.9k stars&lt;/strong&gt;, &lt;strong&gt;MIT license&lt;/strong&gt;, &lt;strong&gt;12,000+ commits&lt;/strong&gt;, and an architecture built on one radical idea — &lt;strong&gt;everything is a plugin&lt;/strong&gt;.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;ldquo;Models, tools, skills, sessions, sandboxes, filesystems, loops, orchestration, and UI are ALL implemented as plugins, and can be mixed, matched, replaced, and extended.&amp;rdquo;&lt;/p&gt;</description></item><item><title>Agent Sandbox: All-in-One Sandbox for AI Agents with Browser, Shell, and VSCode</title><link>https://www.solosoft.dev/post/agent-sandbox-ai-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/agent-sandbox-ai-2026/</guid><description>&lt;p&gt;AI agents need environments to execute in &amp;ndash; places to run code, browse the web, edit files, and interact with tools. Building these environments from scratch for each agent platform is tedious and error-prone. &lt;strong&gt;Agent Sandbox&lt;/strong&gt; solves this by providing a complete, pre-configured Docker sandbox that combines a browser, shell, file system, MCP server, and VSCode Server in a single containerized workspace.&lt;/p&gt;
&lt;p&gt;Developed by agent-infra, Agent Sandbox is designed as the execution environment for AI agents that need to perform real-world tasks. Instead of cobbling together separate tools for browser automation, code execution, and file management, developers get a unified sandbox with all of these capabilities pre-integrated and ready to use.&lt;/p&gt;</description></item><item><title>AgentScope: Alibaba's Open-Source Multi-Agent Framework for Transparent AI Agents</title><link>https://www.solosoft.dev/post/agentscope-framework-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/agentscope-framework-2026/</guid><description>&lt;p&gt;Building production-grade multi-agent systems is notoriously complex. Coordinating communication between agents, managing distributed deployments, integrating with external tools, and ensuring observability are challenges that most frameworks tackle only partially. &lt;strong&gt;AgentScope&lt;/strong&gt;, developed by Alibaba&amp;rsquo;s Tongyi Lab, addresses these challenges with a comprehensive framework designed for real-world, scalable multi-agent applications.&lt;/p&gt;
&lt;p&gt;AgentScope distinguishes itself through its focus on transparency and controllability. Every agent&amp;rsquo;s decision-making process is observable, every message can be inspected, and the entire system can be configured through declarative specifications rather than imperative code. This makes it suitable for enterprise applications where auditability and reliability are paramount.&lt;/p&gt;
&lt;p&gt;The framework supports both the Model Context Protocol (MCP) and Google&amp;rsquo;s Agent-to-Agent (A2A) protocol, enabling interoperability with a wide ecosystem of tools and agent platforms. Combined with its distributed communication system (MsgHub), AgentScope can orchestrate agent swarms that span multiple servers and geographic regions.&lt;/p&gt;</description></item><item><title>Cline: Open-Source Autonomous AI Coding Agent for VS Code</title><link>https://www.solosoft.dev/post/cline-ai-coding-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/cline-ai-coding-2026/</guid><description>&lt;p&gt;VS Code has become the world&amp;rsquo;s most popular code editor, and its extension ecosystem has spawned countless productivity tools. But &lt;strong&gt;Cline&lt;/strong&gt; represents something fundamentally different from the autocomplete suggestions and code snippets that most AI extensions offer. It is an autonomous AI coding agent that operates within VS Code, capable of understanding your entire project, planning multi-step implementations, and executing them with your supervision.&lt;/p&gt;
&lt;p&gt;Developed by the cline organization, Cline has rapidly gained popularity among developers who want more than inline suggestions. It can read files across your project, create new ones, run terminal commands, launch a headless browser, and interact with external tools through the Model Context Protocol. Every action requires human approval, keeping the developer firmly in control while the AI handles the heavy lifting of implementation.&lt;/p&gt;</description></item><item><title>FastAPI MCP: Expose FastAPI Endpoints as MCP Tools</title><link>https://www.solosoft.dev/post/fastapi-mcp-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/fastapi-mcp-2026/</guid><description>&lt;p&gt;If you have a FastAPI application, you have a potential goldmine of tools for AI agents. FastAPI MCP, created by tadata-org, automatically converts your existing FastAPI endpoints into MCP-compatible tools that AI assistants can discover and invoke, with zero code changes to your application.&lt;/p&gt;
&lt;p&gt;The tool works by introspecting your FastAPI route definitions, extracting parameter schemas, descriptions, and authentication requirements, and generating MCP tool definitions on the fly. Every endpoint with a description tag becomes an MCP tool. The integration is automatic and bidirectional&amp;ndash;changes to your API are immediately reflected in the available tools.&lt;/p&gt;
&lt;h2 id="key-capabilities"&gt;Key Capabilities&lt;/h2&gt;
&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Feature&lt;/th&gt;
 &lt;th&gt;Description&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;Automatic conversion&lt;/td&gt;
 &lt;td&gt;No code changes needed to your FastAPI app&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Schema extraction&lt;/td&gt;
 &lt;td&gt;Uses OpenAPI/Pydantic models for type-safe tool definitions&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Auth support&lt;/td&gt;
 &lt;td&gt;Handles API keys, OAuth, and bearer tokens&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Streaming&lt;/td&gt;
 &lt;td&gt;Supports SSE transport for real-time responses&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Documentation&lt;/td&gt;
 &lt;td&gt;Endpoint descriptions become tool descriptions&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="integration-architecture"&gt;Integration Architecture&lt;/h2&gt;

&lt;figure class="mermaid-wrapper not-prose" role="img" aria-label="Mermaid diagram"&gt;
 &lt;div class="mermaid-container"&gt;
 &lt;pre class="mermaid"&gt;flowchart LR
 A[FastAPI App] --&amp;gt; B[FastAPI MCP Adapter]
 B --&amp;gt; C[MCP Server]
 C --&amp;gt; D[Tool: GET /users]
 C --&amp;gt; E[Tool: POST /orders]
 C --&amp;gt; F[Tool: PUT /inventory]
 C --&amp;gt; G[Tool: DELETE /items]
 H[AI Agent] --&amp;gt; I[MCP Client]
 I --&amp;gt; J[JSON-RPC]
 J --&amp;gt; C&lt;/pre&gt;
 &lt;script type="application/mermaid"&gt;flowchart LR
 A[FastAPI App] --&gt; B[FastAPI MCP Adapter]
 B --&gt; C[MCP Server]
 C --&gt; D[Tool: GET /users]
 C --&gt; E[Tool: POST /orders]
 C --&gt; F[Tool: PUT /inventory]
 C --&gt; G[Tool: DELETE /items]
 H[AI Agent] --&gt; I[MCP Client]
 I --&gt; J[JSON-RPC]
 J --&gt; C&lt;/script&gt;
 &lt;/div&gt;
&lt;/figure&gt;&lt;p&gt;The adapter sits between your FastAPI application and the MCP protocol. It reads your route definitions and generates MCP tool definitions automatically. When an AI agent calls a tool, the adapter routes the request to the appropriate endpoint and returns the response.&lt;/p&gt;</description></item><item><title>MCP Servers: Official Model Context Protocol Server Implementations</title><link>https://www.solosoft.dev/post/mcp-servers-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/mcp-servers-2026/</guid><description>&lt;p&gt;AI agents are only as capable as the tools they can access. An agent that can read files, query databases, browse the web, and call APIs is dramatically more useful than one that only processes text. But every tool integration has historically been custom — built for a specific AI platform, requiring platform-specific code, authentication, and deployment patterns.&lt;/p&gt;
&lt;p&gt;The Model Context Protocol (MCP), developed by Anthropic and released as an open standard, solves this fragmentation. It defines a universal protocol for AI applications to interact with external systems — a standard interface that any AI client can use to discover and invoke tools, access resources, and follow prompts. The official MCP servers repository provides reference implementations that demonstrate the protocol in action for common use cases.&lt;/p&gt;</description></item><item><title>MCP TypeScript SDK: Build Model Context Protocol Servers</title><link>https://www.solosoft.dev/post/mcp-typescript-sdk-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/mcp-typescript-sdk-2026/</guid><description>&lt;p&gt;The Model Context Protocol (MCP) is rapidly becoming the standard way to connect AI agents with external tools, APIs, and data sources. The official TypeScript SDK, maintained by the modelcontextprotocol organization, provides everything developers need to build MCP servers that expose functionality to AI assistants like Claude.&lt;/p&gt;
&lt;p&gt;MCP creates a standardized interface between AI models and the tools they use. Instead of building custom integrations for every AI agent, you build an MCP server once, and any MCP-compatible client can discover and use your tools.&lt;/p&gt;
&lt;h2 id="what-the-sdk-provides"&gt;What the SDK Provides&lt;/h2&gt;
&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Component&lt;/th&gt;
 &lt;th&gt;Description&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;Server framework&lt;/td&gt;
 &lt;td&gt;Build MCP servers with tool, resource, and prompt handlers&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Client library&lt;/td&gt;
 &lt;td&gt;Connect to MCP servers from any TypeScript application&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Transport layer&lt;/td&gt;
 &lt;td&gt;Built-in support for stdio and SSE (Server-Sent Events)&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Schema validation&lt;/td&gt;
 &lt;td&gt;Type-safe tool definitions with Zod integration&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Authentication&lt;/td&gt;
 &lt;td&gt;OAuth 2.0 and API key support for secure connections&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="mcp-architecture"&gt;MCP Architecture&lt;/h2&gt;

&lt;figure class="mermaid-wrapper not-prose" role="img" aria-label="Mermaid diagram"&gt;
 &lt;div class="mermaid-container"&gt;
 &lt;pre class="mermaid"&gt;flowchart LR
 A[AI Client&amp;lt;br/&amp;gt;Claude, etc.] --&amp;gt; B[MCP Protocol&amp;lt;br/&amp;gt;JSON-RPC]
 B --&amp;gt; C[MCP Server]
 C --&amp;gt; D[Tool: Calculator]
 C --&amp;gt; E[Tool: Database]
 C --&amp;gt; F[Tool: Web Search]
 C --&amp;gt; G[Resource: Files]
 B --&amp;gt; H[Transport Layer&amp;lt;br/&amp;gt;stdio / SSE]&lt;/pre&gt;
 &lt;script type="application/mermaid"&gt;flowchart LR
 A[AI Client&lt;br/&gt;Claude, etc.] --&gt; B[MCP Protocol&lt;br/&gt;JSON-RPC]
 B --&gt; C[MCP Server]
 C --&gt; D[Tool: Calculator]
 C --&gt; E[Tool: Database]
 C --&gt; F[Tool: Web Search]
 C --&gt; G[Resource: Files]
 B --&gt; H[Transport Layer&lt;br/&gt;stdio / SSE]&lt;/script&gt;
 &lt;/div&gt;
&lt;/figure&gt;&lt;p&gt;The architecture follows a clean client-server pattern. The AI client communicates with the MCP server over JSON-RPC messages, and the server exposes tools and resources that the AI can invoke. The transport layer handles the underlying communication, whether that&amp;rsquo;s subprocess stdio or network SSE.&lt;/p&gt;</description></item><item><title>Open MCP Client: Self-Hosted Web-Based Client for Any MCP Server</title><link>https://www.solosoft.dev/post/open-mcp-client-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/open-mcp-client-2026/</guid><description>&lt;p&gt;The Model Context Protocol (MCP) is rapidly becoming the standard protocol for connecting AI applications to external tools and data sources, but the ecosystem has been missing a polished, open, and self-hostable client that can talk to any MCP server. &lt;strong&gt;Open MCP Client&lt;/strong&gt; fills that gap. Built by CopilotKit, this open-source web application gives you a ChatGPT-like interface for chatting with any MCP server, with a LangGraph-powered agent managing the orchestration under the hood.&lt;/p&gt;
&lt;p&gt;What makes Open MCP Client particularly compelling is its self-hosted nature. Instead of relying on a hosted platform with opaque data handling, you run the entire stack on your own infrastructure. This means your conversation history, tool configurations, and any data flowing through MCP tools never leave your control &amp;ndash; a critical advantage for developers working with proprietary codebases, sensitive documents, or internal APIs.&lt;/p&gt;</description></item><item><title>OpenClaw: Open-Source AI Agent Platform</title><link>https://www.solosoft.dev/post/openclaw-platform-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/openclaw-platform-2026/</guid><description>&lt;p&gt;The AI agent ecosystem is fragmented. Every agent builder has its own tool format, deployment model, and skill definition. OpenClaw aims to unify this landscape with an open-source platform that supports building, deploying, and sharing AI agents with a skill marketplace and native MCP support.&lt;/p&gt;
&lt;p&gt;OpenClaw provides a complete environment for agent development. Developers can create agents using a visual builder or code, equip them with tools from a community marketplace, deploy them to various targets, and orchestrate multi-agent workflows. The platform is designed to be self-hosted, giving organizations full control over their agent infrastructure.&lt;/p&gt;
&lt;h2 id="platform-components"&gt;Platform Components&lt;/h2&gt;
&lt;table&gt;
 &lt;thead&gt;
 &lt;tr&gt;
 &lt;th&gt;Component&lt;/th&gt;
 &lt;th&gt;Description&lt;/th&gt;
 &lt;/tr&gt;
 &lt;/thead&gt;
 &lt;tbody&gt;
 &lt;tr&gt;
 &lt;td&gt;Agent builder&lt;/td&gt;
 &lt;td&gt;Visual and code-based agent construction&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Skill marketplace&lt;/td&gt;
 &lt;td&gt;Community-contributed tools and capabilities&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;MCP runtime&lt;/td&gt;
 &lt;td&gt;Native support for Model Context Protocol servers&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Multi-agent orchestrator&lt;/td&gt;
 &lt;td&gt;Coordinate multiple agents for complex tasks&lt;/td&gt;
 &lt;/tr&gt;
 &lt;tr&gt;
 &lt;td&gt;Deployment manager&lt;/td&gt;
 &lt;td&gt;One-click deploy to cloud or on-premises&lt;/td&gt;
 &lt;/tr&gt;
 &lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id="agent-architecture"&gt;Agent Architecture&lt;/h2&gt;

&lt;figure class="mermaid-wrapper not-prose" role="img" aria-label="Mermaid diagram"&gt;
 &lt;div class="mermaid-container"&gt;
 &lt;pre class="mermaid"&gt;flowchart LR
 A[User Query] --&amp;gt; B[Agent Orchestrator]
 B --&amp;gt; C[Agent A&amp;lt;br/&amp;gt;Research]
 B --&amp;gt; D[Agent B&amp;lt;br/&amp;gt;Analysis]
 B --&amp;gt; E[Agent C&amp;lt;br/&amp;gt;Generation]
 C --&amp;gt; F[MCP Tools]
 D --&amp;gt; F
 E --&amp;gt; F
 F --&amp;gt; G[External APIs]
 F --&amp;gt; H[Databases]
 F --&amp;gt; I[File System]
 C --&amp;gt; J[Skill: Web Search]
 D --&amp;gt; K[Skill: Data Viz]
 E --&amp;gt; L[Skill: Markdown]&lt;/pre&gt;
 &lt;script type="application/mermaid"&gt;flowchart LR
 A[User Query] --&gt; B[Agent Orchestrator]
 B --&gt; C[Agent A&lt;br/&gt;Research]
 B --&gt; D[Agent B&lt;br/&gt;Analysis]
 B --&gt; E[Agent C&lt;br/&gt;Generation]
 C --&gt; F[MCP Tools]
 D --&gt; F
 E --&gt; F
 F --&gt; G[External APIs]
 F --&gt; H[Databases]
 F --&gt; I[File System]
 C --&gt; J[Skill: Web Search]
 D --&gt; K[Skill: Data Viz]
 E --&gt; L[Skill: Markdown]&lt;/script&gt;
 &lt;/div&gt;
&lt;/figure&gt;&lt;p&gt;Agents in OpenClaw are modular. Each agent has a specific role and set of skills. The orchestrator routes tasks to the appropriate agent, and agents invoke MCP tools as needed. Skills from the marketplace plug into this architecture seamlessly.&lt;/p&gt;</description></item><item><title>OpenManus: Open-Source Framework for Building General AI Agents with 55K Stars</title><link>https://www.solosoft.dev/post/openmanus-agent-framework-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/openmanus-agent-framework-2026/</guid><description>&lt;p&gt;The open-source AI agent landscape has a new leader. &lt;strong&gt;OpenManus&lt;/strong&gt;, developed by FoundationAgents (the same team behind MetaGPT), has rapidly grown to over 55,000 GitHub stars by offering something the community desperately wanted: a flexible, modular, and genuinely open framework for building general-purpose AI agents.&lt;/p&gt;
&lt;p&gt;OpenManus fills a gap that emerged when commercial AI agent products like Anthropic&amp;rsquo;s Claude Code and OpenAI&amp;rsquo;s Codex CLI gained traction but remained proprietary. The community wanted an open alternative &amp;ndash; a framework they could inspect, modify, extend, and self-host. OpenManus delivered.&lt;/p&gt;
&lt;p&gt;At its core, OpenManus provides a Python-based platform where AI agents can browse the web, execute code, manipulate files, call APIs, and collaborate with other agents. Its architecture is designed to be model-agnostic, tool-extensible, and deployment-flexible &amp;ndash; running on everything from a laptop to a production server.&lt;/p&gt;</description></item><item><title>Pixelle-MCP: Open-Source Multimodal AIGC Solution Bridging ComfyUI and LLMs via MCP</title><link>https://www.solosoft.dev/post/pixelle-mcp-multimodal-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/pixelle-mcp-multimodal-2026/</guid><description>&lt;p&gt;The Model Context Protocol (MCP) is reshaping how AI applications communicate, but most MCP tools remain narrowly focused on text and data queries. &lt;strong&gt;Pixelle-MCP&lt;/strong&gt; shatters that limitation by turning ComfyUI &amp;ndash; the most popular visual workflow engine for AI-generated content &amp;ndash; into a full multimodal MCP server. Developed by Alibaba&amp;rsquo;s AIDC-AI team, this open-source solution lets any MCP-compatible client invoke complex AIGC pipelines for images, sound, video, and text using natural language.&lt;/p&gt;
&lt;p&gt;The core insight behind Pixelle-MCP is elegant: instead of building multimodal generation capabilities from scratch, it repurposes ComfyUI&amp;rsquo;s vast ecosystem of community-built workflows as MCP-callable tools. Anyone who has designed a ComfyUI pipeline for stable diffusion, audio generation, or video synthesis can now expose that workflow to any LLM client as a simple API, with zero additional code.&lt;/p&gt;</description></item><item><title>Roo Code: Open-Source AI Coding Agent with Multiple Expert Modes</title><link>https://www.solosoft.dev/post/roo-code-ai-agent-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/roo-code-ai-agent-2026/</guid><description>&lt;p&gt;The landscape of AI coding assistants has grown crowded, but few tools have captured developer attention as rapidly as &lt;strong&gt;Roo Code&lt;/strong&gt;. With over 23,000 GitHub stars and a rapidly growing community, Roo Code has distinguished itself through a design philosophy that treats AI as a multi-modal collaborator rather than a single-purpose autocomplete.&lt;/p&gt;
&lt;p&gt;Roo Code integrates as a VS Code extension but goes far beyond the capabilities of typical code completion tools. It operates as a full-fledged AI agent that can read and write files, execute terminal commands, browse the web, and interact with external services through the Model Context Protocol (MCP). The defining innovation is its expert mode system: instead of one AI assistant that does everything, Roo Code provides specialized personas optimized for different tasks.&lt;/p&gt;</description></item><item><title>Supermemory MCP: Persistent Memory for AI Agents via MCP</title><link>https://www.solosoft.dev/post/supermemory-mcp-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/supermemory-mcp-2026/</guid><description>&lt;p&gt;One of the biggest limitations of current AI agents is their lack of persistent memory. Each new conversation starts from scratch, forcing users to repeat context and preferences. Supermemory MCP solves this by providing a persistent memory layer that AI agents can read from and write to across sessions, all through the Model Context Protocol.&lt;/p&gt;
&lt;p&gt;Developed by supermemoryai, this MCP server gives AI agents the ability to remember facts about users, recall past interactions, and build a knowledge base over time. It supports structured and unstructured memory, automatic summarization, and configurable retention policies. The result is AI agents that learn and improve with every interaction.&lt;/p&gt;</description></item><item><title>Claude Code 2026 Complete Guide: From Basics to Multi-Agent Architecture</title><link>https://www.solosoft.dev/post/claude-code-complete-guide-2026/</link><pubDate>Fri, 27 Mar 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/claude-code-complete-guide-2026/</guid><description>&lt;p&gt;&lt;strong&gt;Claude Code&lt;/strong&gt; is &lt;a href="https://www.anthropic.com/claude-code"&gt;Anthropic&lt;/a&gt;&amp;rsquo;s command-line AI coding assistant (CLI tool) that reads and writes your entire codebase, executes shell commands, and calls external APIs directly from the terminal. In 2025/2026, it has evolved far beyond a code-completion tool into a full AI operating system capable of taking over development, marketing, and everyday automation workflows. This guide takes you from the basics to advanced multi-agent architecture.&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Last updated&lt;/strong&gt;: March 27, 2026 · Synthesized from 31 practitioner research sources&lt;/p&gt;
&lt;/blockquote&gt;
&lt;hr&gt;
&lt;h2 id="table-of-contents"&gt;Table of Contents&lt;/h2&gt;
&lt;ol&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#latest-updates"&gt;Latest Core Updates for 2025/2026&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#permission-modes"&gt;Four Permission Modes and Plan Mode&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#context-management"&gt;Context Management and CLAUDE.md&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#skills-system"&gt;Skills System and Auto-Evolution&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#hooks"&gt;Hooks Interception System&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#mcp-integration"&gt;MCP Integration and Cost Optimization&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#multi-agent"&gt;Multi-Agent Architecture: Sub-agents vs Agent Teams&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#cost-control"&gt;Cost Control in Practice&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="https://www.solosoft.dev/post/claude-code-complete-guide-2026/#case-studies"&gt;Three Real-World Case Studies&lt;/a&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;hr&gt;
&lt;h2 id="what-are-the-most-important-new-features-in-claude-code-2026"&gt;What Are the Most Important New Features in Claude Code 2026?&lt;/h2&gt;
&lt;blockquote&gt;
&lt;p&gt;&lt;strong&gt;Direct answer&lt;/strong&gt;: In 2025/2026, Claude Code added Dispatch remote mode, &lt;code&gt;/by the way&lt;/code&gt; for mid-task side questions, &lt;code&gt;/loop&lt;/code&gt; scheduled tasks, Fast Mode, and structured Automemory — upgrading the AI from a &amp;ldquo;chat tool&amp;rdquo; into an autonomous agent that can run 24/7 in the background.&lt;/p&gt;</description></item><item><title>The Complete Claude Code Handbook: From Installation to Multi-Agent Collaboration</title><link>https://www.solosoft.dev/trends/claude-code-complete-guide-20260330/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/trends/claude-code-complete-guide-20260330/</guid><description>&lt;p&gt;When AI stops just answering questions and starts writing code, running deployments, and self-optimizing while you sleep — that is where &lt;strong&gt;Claude Code&lt;/strong&gt; genuinely changes the rules of the game.&lt;/p&gt;
&lt;p&gt;In late 2024, Anthropic released Claude Code — a tool that is not just another coding assistant. It is a &lt;strong&gt;local AI agent&lt;/strong&gt; that lives in your terminal or IDE and can autonomously read and write local files, execute bash commands, control browsers, and even dispatch sub-agents to complete complex tasks in parallel. The concept of Vibe Coding took off alongside it: you no longer copy and paste AI output. Claude Code writes the code directly into your project and deploys it.&lt;/p&gt;</description></item></channel></rss>