MCP Catalogs
Home

agenite

by subeshb1·69·Score 43

Agenite is a TypeScript framework for building AI agents with MCP support for connecting to data sources.

ai-llmdeveloper-toolsother
9
Forks
3
Open issues
8 mo ago
Last commit
2d ago
Indexed

Overview

Agenite is a comprehensive TypeScript framework designed for building sophisticated AI agents with first-class support for tools, streaming, and multi-agent architectures. It provides a modular, type-safe approach to agent development with standardized MCP client implementation for connecting to various data sources. The framework supports multiple LLM providers including OpenAI, Anthropic, AWS Bedrock, and Ollama, ensuring flexibility for different deployment scenarios.

Try asking AI

After installing, here are 5 things you can ask your AI assistant:

you:Building AI assistants with specialized tool capabilities
you:Creating multi-agent systems for complex problem solving
you:Developing type-safe agent applications with various LLM providers
you:What LLM providers does Agenite support?
you:How does the MCP integration work in Agenite?

When to choose this

Choose Agenite for TypeScript projects requiring type-safe tool integration and multi-agent systems with MCP capabilities.

When NOT to choose this

Don't choose if you need a pure Python solution or require extensive community plugins beyond the current MCP offering.

Tools this server exposes

1 tool extracted from the README
  • calculator({ expression: string }) => Promise<{ isError: boolean, data: string }>

    Perform basic math operations

Note: The README mentions tools as a concept and provides an example tool called 'calculator', but doesn't document the complete set of available MCP tools. The example tool is included as it demonstrates the tool structure.

Comparable tools

langchainsemantic-workspacenexusmcp-server-template

Installation

Install the MCP package as part of the Agenite framework:

npm install @agenite/agent @agenite/tool @agenite/llm @agenite/mcp
npm install @agenite/openai # or other provider

For Claude Desktop integration, add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "agenite": {
      "command": "npx",
      "args": ["@agenite/mcp"],
      "env": {}
    }
  }
}

FAQ

What LLM providers does Agenite support?
Agenite supports OpenAI, Anthropic, AWS Bedrock, and Ollama. It has a provider-agnostic architecture that makes it easy to add new providers.
How does the MCP integration work in Agenite?
Agenite provides a standardized MCP client implementation that allows agents to connect to various data sources and tools through the Model Context Protocol.

Compare agenite with

GitHub →

Last updated · Auto-generated from public README + GitHub signals.