Skip to content
This repository was archived by the owner on Apr 8, 2025. It is now read-only.

Add AgentAI library to clients list #271

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions clients.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ This page provides an overview of applications that support the Model Context Pr
| [OpenSumi][OpenSumi] | ❌ | ❌ | ✅ | ❌ | ❌ | Supports tools in OpenSumi |
| [Daydreams Agents][Daydreams] | ✅ | ✅ | ✅ | ❌ | ❌ | Support for drop in Servers to Daydreams agents |
| [Apify MCP Tester][Apify MCP Tester] | ❌ | ❌ | ✅ | ❌ | ❌ | Supports tools |
| [AgentAI][AgentAI] | ❌ | ❌ | ✅ | ❌ | ❌ | Agent Library written in Rust with tools support |



Expand Down Expand Up @@ -72,6 +73,7 @@ This page provides an overview of applications that support the Model Context Pr
[Tools]: https://modelcontextprotocol.io/docs/concepts/tools
[Sampling]: https://modelcontextprotocol.io/docs/concepts/sampling
[Microsoft Copilot Studio]: https://learn.microsoft.com/en-us/microsoft-copilot-studio/agent-extend-action-mcp
[AgentAI]: https://github.com/AdamStrojek/rust-agentai

## Client details

Expand Down Expand Up @@ -148,7 +150,7 @@ Claude Code is an interactive agentic coding tool from Anthropic that helps you

**Key features:**
- PDF and Image support, based on MCP Native types
- Interactive front-end to develop and diagnose Agent applications, including passthrough and playback simulators
- Interactive front-end to develop and diagnose Agent applications, including passthrough and playback simulators
- Built in support for "Building Effective Agents" workflows.
- Deploy Agents as MCP Servers

Expand Down Expand Up @@ -202,7 +204,7 @@ Programmatically assemble prompts for LLMs using [GenAIScript](https://microsoft
**Key features:**
- Support for MCP tools
- Extend Copilot Studio agents with MCP servers
- Leveraging Microsoft unified, governed, and secure API management solutions
- Leveraging Microsoft unified, governed, and secure API management solutions

### oterm
[oterm] is a terminal client for Ollama allowing users to create chats/agents.
Expand Down Expand Up @@ -312,6 +314,18 @@ It uses plain JavaScript (old-school style) and is hosted on Apify, allowing you
- Works with the [Apify MCP Server](https://apify.com/apify/actors-mcp-server) to interact with one or more Apify [Actors](https://apify.com/store).
- Dynamically utilizes tools based on context and user queries (if supported by the server).

### AgentAI

[AgentAI](https://github.com/AdamStrojek/rust-agentai) is a Rust library designed to simplify the creation of AI agents. The library includes seamless integration with MCP Servers.

[Example of MCP Server integration](https://github.com/AdamStrojek/rust-agentai/blob/master/examples/tools_mcp.rs)

**Key features:**
- Multi-LLM – We support most LLM APIs (OpenAI, Anthropic, Gemini, Ollama, and all OpenAI API Compatible).
- Built-in support for MCP Servers.
- Create agentic flows in a type- and memory-safe language like Rust.


## Adding MCP support to your application

If you've added MCP support to your application, we encourage you to submit a pull request to add it to this list. MCP integration can provide your users with powerful contextual AI capabilities and make your application part of the growing MCP ecosystem.
Expand Down