From 8f91665ebe7b3f8dca2e496be99e9d561c2d3684 Mon Sep 17 00:00:00 2001 From: cryxnet <75471375+cryxnet@users.noreply.github.com> Date: Fri, 24 Apr 2026 15:14:21 +0200 Subject: [PATCH 1/4] Add Promptise Foundry to Frameworks (servers + clients) Signed-off-by: cryxnet <75471375+cryxnet@users.noreply.github.com> --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 874916cab3..e6f787efc9 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,7 @@ These are high-level frameworks that make it easier to build MCP servers or clie * **[Next.js MCP Server Template](https://github.com/vercel-labs/mcp-for-next.js)** (Typescript) - A starter Next.js project that uses the MCP Adapter to allow MCP clients to connect and access resources. * **[PayMCP](https://github.com/blustAI/paymcp)** (Python & TypeScript) - Lightweight payments layer for MCP servers: turn tools into paid endpoints with a two-line decorator. [PyPI](https://pypi.org/project/paymcp/) · [npm](https://www.npmjs.com/package/paymcp) · [TS repo](https://github.com/blustAI/paymcp-ts) * **[Perl SDK](https://github.com/mojolicious/mojo-mcp)** - An SDK for building MCP servers and clients with the Perl programming language. +* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - Production MCP server SDK with JWT/RS256/ES256 auth, capability guards, middleware chain (rate limit, circuit breaker, caching, audit, Prometheus/OTel), DI, per-tool versioning, streaming, elicitation, sampling, and in-process TestClient. * **[Quarkus MCP Server SDK](https://github.com/quarkiverse/quarkus-mcp-server)** (Java) - **[R mcptools](https://github.com/posit-dev/mcptools)** - An R SDK for creating R-based MCP servers and retrieving functionality from third-party MCP servers as R functions. * **[SAP ABAP MCP Server SDK](https://github.com/abap-ai/mcp)** - Build SAP ABAP based MCP servers. ABAP 7.52 based with 7.02 downport; runs on R/3 & S/4HANA on-premises, currently not cloud-ready. @@ -92,6 +93,7 @@ These are high-level frameworks that make it easier to build MCP servers or clie * **[MCP CLI Client](https://github.com/vincent-pli/mcp-cli-host)** - A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP). * **[OpenMCP Client](https://github.com/LSTM-Kirigaya/openmcp-client/)** - An all-in-one vscode/trae/cursor plugin for MCP server debugging. [Document](https://kirigaya.cn/openmcp/) & [OpenMCP SDK](https://kirigaya.cn/openmcp/sdk-tutorial/). * **[PHP MCP Client](https://github.com/php-mcp/client)** - Core PHP implementation for the Model Context Protocol (MCP) Client +* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - Native MCP client (stdio/SSE/streamable HTTP, bearer + API key) with automatic tool discovery across multiple servers and MCP→LangChain `BaseTool` adapter. * **[Runbear](https://runbear.io/solutions/integrations/slack/mcp)** - No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord. ## 📚 Resources From dc2efde0b9642e0ae957bcc93433c3b74e9c9359 Mon Sep 17 00:00:00 2001 From: cryxnet <75471375+cryxnet@users.noreply.github.com> Date: Mon, 4 May 2026 22:17:24 +0200 Subject: [PATCH 2/4] Reframe Promptise Foundry as MCP framework, drop LangChain mention --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e6f787efc9..c1760d7d33 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ These are high-level frameworks that make it easier to build MCP servers or clie * **[Next.js MCP Server Template](https://github.com/vercel-labs/mcp-for-next.js)** (Typescript) - A starter Next.js project that uses the MCP Adapter to allow MCP clients to connect and access resources. * **[PayMCP](https://github.com/blustAI/paymcp)** (Python & TypeScript) - Lightweight payments layer for MCP servers: turn tools into paid endpoints with a two-line decorator. [PyPI](https://pypi.org/project/paymcp/) · [npm](https://www.npmjs.com/package/paymcp) · [TS repo](https://github.com/blustAI/paymcp-ts) * **[Perl SDK](https://github.com/mojolicious/mojo-mcp)** - An SDK for building MCP servers and clients with the Perl programming language. -* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - Production MCP server SDK with JWT/RS256/ES256 auth, capability guards, middleware chain (rate limit, circuit breaker, caching, audit, Prometheus/OTel), DI, per-tool versioning, streaming, elicitation, sampling, and in-process TestClient. +* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - The MCP framework for building secure, scalable MCP servers with real access control and a FastAPI-style developer experience — JWT/RS256/ES256 auth, capability-based guards, middleware (rate limit, circuit breaker, caching, audit, Prometheus/OTel), dependency injection, per-tool versioning, streaming, elicitation, sampling, and an in-process TestClient. * **[Quarkus MCP Server SDK](https://github.com/quarkiverse/quarkus-mcp-server)** (Java) - **[R mcptools](https://github.com/posit-dev/mcptools)** - An R SDK for creating R-based MCP servers and retrieving functionality from third-party MCP servers as R functions. * **[SAP ABAP MCP Server SDK](https://github.com/abap-ai/mcp)** - Build SAP ABAP based MCP servers. ABAP 7.52 based with 7.02 downport; runs on R/3 & S/4HANA on-premises, currently not cloud-ready. @@ -93,7 +93,7 @@ These are high-level frameworks that make it easier to build MCP servers or clie * **[MCP CLI Client](https://github.com/vincent-pli/mcp-cli-host)** - A CLI host application that enables Large Language Models (LLMs) to interact with external tools through the Model Context Protocol (MCP). * **[OpenMCP Client](https://github.com/LSTM-Kirigaya/openmcp-client/)** - An all-in-one vscode/trae/cursor plugin for MCP server debugging. [Document](https://kirigaya.cn/openmcp/) & [OpenMCP SDK](https://kirigaya.cn/openmcp/sdk-tutorial/). * **[PHP MCP Client](https://github.com/php-mcp/client)** - Core PHP implementation for the Model Context Protocol (MCP) Client -* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - Native MCP client (stdio/SSE/streamable HTTP, bearer + API key) with automatic tool discovery across multiple servers and MCP→LangChain `BaseTool` adapter. +* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - Native MCP client (stdio/SSE/streamable HTTP, bearer + API key) with automatic tool discovery and unified routing across multiple servers. * **[Runbear](https://runbear.io/solutions/integrations/slack/mcp)** - No-code MCP client for team chat platforms, such as Slack, Microsoft Teams, and Discord. ## 📚 Resources From 0748bdcf3d9950d24e54de259305f50b48da0c4d Mon Sep 17 00:00:00 2001 From: cryxnet <75471375+cryxnet@users.noreply.github.com> Date: Mon, 4 May 2026 22:19:10 +0200 Subject: [PATCH 3/4] Shorten Promptise Foundry server line to match neighbor tone --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1760d7d33..4f67021e6f 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ These are high-level frameworks that make it easier to build MCP servers or clie * **[Next.js MCP Server Template](https://github.com/vercel-labs/mcp-for-next.js)** (Typescript) - A starter Next.js project that uses the MCP Adapter to allow MCP clients to connect and access resources. * **[PayMCP](https://github.com/blustAI/paymcp)** (Python & TypeScript) - Lightweight payments layer for MCP servers: turn tools into paid endpoints with a two-line decorator. [PyPI](https://pypi.org/project/paymcp/) · [npm](https://www.npmjs.com/package/paymcp) · [TS repo](https://github.com/blustAI/paymcp-ts) * **[Perl SDK](https://github.com/mojolicious/mojo-mcp)** - An SDK for building MCP servers and clients with the Perl programming language. -* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - The MCP framework for building secure, scalable MCP servers with real access control and a FastAPI-style developer experience — JWT/RS256/ES256 auth, capability-based guards, middleware (rate limit, circuit breaker, caching, audit, Prometheus/OTel), dependency injection, per-tool versioning, streaming, elicitation, sampling, and an in-process TestClient. +* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - A production MCP framework for building secure, scalable servers with real access control and a FastAPI-style developer experience. * **[Quarkus MCP Server SDK](https://github.com/quarkiverse/quarkus-mcp-server)** (Java) - **[R mcptools](https://github.com/posit-dev/mcptools)** - An R SDK for creating R-based MCP servers and retrieving functionality from third-party MCP servers as R functions. * **[SAP ABAP MCP Server SDK](https://github.com/abap-ai/mcp)** - Build SAP ABAP based MCP servers. ABAP 7.52 based with 7.02 downport; runs on R/3 & S/4HANA on-premises, currently not cloud-ready. From f0e85333fba3904d6e18d811cb7a4abe76745553 Mon Sep 17 00:00:00 2001 From: cryxnet <75471375+cryxnet@users.noreply.github.com> Date: Mon, 4 May 2026 22:19:46 +0200 Subject: [PATCH 4/4] Reframe Promptise Foundry server line with specifics --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4f67021e6f..3314d83175 100644 --- a/README.md +++ b/README.md @@ -74,7 +74,7 @@ These are high-level frameworks that make it easier to build MCP servers or clie * **[Next.js MCP Server Template](https://github.com/vercel-labs/mcp-for-next.js)** (Typescript) - A starter Next.js project that uses the MCP Adapter to allow MCP clients to connect and access resources. * **[PayMCP](https://github.com/blustAI/paymcp)** (Python & TypeScript) - Lightweight payments layer for MCP servers: turn tools into paid endpoints with a two-line decorator. [PyPI](https://pypi.org/project/paymcp/) · [npm](https://www.npmjs.com/package/paymcp) · [TS repo](https://github.com/blustAI/paymcp-ts) * **[Perl SDK](https://github.com/mojolicious/mojo-mcp)** - An SDK for building MCP servers and clients with the Perl programming language. -* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - A production MCP framework for building secure, scalable servers with real access control and a FastAPI-style developer experience. +* **[Promptise Foundry](https://github.com/promptise-com/foundry)** (Python) - A production MCP framework for building secure, scalable servers the way you build a real API — access control (JWT, IdPs, and more), middlewares, job queues, streaming, and dependency injection. * **[Quarkus MCP Server SDK](https://github.com/quarkiverse/quarkus-mcp-server)** (Java) - **[R mcptools](https://github.com/posit-dev/mcptools)** - An R SDK for creating R-based MCP servers and retrieving functionality from third-party MCP servers as R functions. * **[SAP ABAP MCP Server SDK](https://github.com/abap-ai/mcp)** - Build SAP ABAP based MCP servers. ABAP 7.52 based with 7.02 downport; runs on R/3 & S/4HANA on-premises, currently not cloud-ready.