<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Model Context Protocol on SoloSoft</title><link>https://www.solosoft.dev/tags/model-context-protocol/</link><description>Recent content in Model Context Protocol on SoloSoft</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Sat, 02 May 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://www.solosoft.dev/tags/model-context-protocol/index.xml" rel="self" type="application/rss+xml"/><item><title>Higgsfield AI MCP Guide: Generate Images &amp; Video in Claude (2026)</title><link>https://www.solosoft.dev/post/higgsfield-ai-mcp-guide-2026/</link><pubDate>Sat, 02 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/higgsfield-ai-mcp-guide-2026/</guid><description>&lt;p&gt;Higgsfield AI released its MCP server on April 30, 2026, becoming the first platform to bring cinematic-grade image and video generation directly into Claude conversations. Instead of juggling between ChatGPT for prompt research, Midjourney for image generation, and Runway for video production, you can now do everything inside a single chat interface — research, refine prompts, generate images, produce videos, and manage character consistency, all through natural language.&lt;/p&gt;
&lt;p&gt;This guide covers everything you need to know about the Higgsfield AI MCP server: what it does, how to install it, every tool available, the pricing model, and practical workflows that turn Claude into a complete visual content production studio.&lt;/p&gt;</description></item><item><title>MCP Router: Open-Source Router for Model Context Protocol Servers</title><link>https://www.solosoft.dev/post/mcprouter-2026/</link><pubDate>Fri, 01 May 2026 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/post/mcprouter-2026/</guid><description>&lt;p&gt;The Model Context Protocol (MCP) has emerged as the standard interface for connecting AI agents to external tools and data sources. As organizations deploy dozens of MCP servers for tasks ranging from code analysis to database queries, a critical infrastructure gap has emerged: how do you manage, route, and balance traffic across multiple MCP servers without coupling every agent to every server address? &lt;strong&gt;MCP Router&lt;/strong&gt;, developed by chatmcp, fills this gap with a dedicated open-source routing layer.&lt;/p&gt;
&lt;p&gt;MCP Router sits between AI agents and MCP server instances, providing a unified entry point that handles load distribution, failover, and server lifecycle management. Instead of configuring each AI agent with the specific addresses of every MCP server, agents connect to the router, which intelligently forwards requests to the appropriate backend. This decoupling is essential as MCP deployments scale from a handful of servers to dozens or hundreds.&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>AI Frontier Model Race Peaks in March 2026</title><link>https://www.solosoft.dev/trends/ai-frontier-model-race-march-20260331/</link><pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate><guid>https://www.solosoft.dev/trends/ai-frontier-model-race-march-20260331/</guid><description>&lt;p&gt;For most of the past four years, the cadence of frontier AI model releases followed a roughly predictable rhythm: major labs would launch one transformative model per quarter, the benchmarks would be parsed, the think-pieces would be written, and the industry would have a few months to absorb the implications before the next release arrived. That rhythm compressed dramatically in March 2026.&lt;/p&gt;
&lt;p&gt;In a three-week window between March 5 and March 22, OpenAI shipped GPT-5.4, Google DeepMind released Gemini 3.1 Ultra, and xAI deployed Grok 4.20. Three frontier models from three different organizations, each making credible claims to state-of-the-art performance, each with distinct architectural choices and commercial positioning, arriving in rapid succession. The result was not just a competitive benchmark exercise — it was a structural shift in how the frontier AI race operates and what enterprises, developers, and policymakers must plan for.&lt;/p&gt;</description></item></channel></rss>