Agentic AI MCP Server

Agentic AI MCP Server

An MCP server with real AI capabilities (OpenAI/Anthropic) for natural language understanding, multi-step planning, and autonomous task execution, enabling intelligent file analysis, weather-based planning, and more.

Category
Visit Server

README

๐Ÿค– Agentic AI MCP Server

A sophisticated Model Context Protocol (MCP) server powered by real AI capabilities. This server provides natural language processing, multi-step planning, intelligent reasoning, and autonomous task execution with OpenAI and Anthropic integration.

โœจ Features

๐Ÿง  Real AI Capabilities

  • ๐Ÿค– OpenAI Integration: GPT-4o, GPT-4o-mini, GPT-3.5-turbo support
  • ๐Ÿง  Anthropic Integration: Claude 3 (Haiku, Sonnet, Opus) support
  • ๐Ÿ”„ Smart Fallback: Graceful degradation to mock AI if needed
  • ๐Ÿ’ฐ Cost-Optimized: Recommended models for best value
  • ๐Ÿ” Secure: Environment-based API key management

๐ŸŽฏ Intelligent Features

  • Natural Language Understanding: True comprehension with real AI
  • Multi-Step Planning: Automatic task decomposition and execution
  • Autonomous Reasoning: Context-aware decision making
  • Memory & Context: Persistent conversation history
  • Intelligent Synthesis: Coherent responses combining multiple tools

๐Ÿ”ง Smart Tools

  • AI Assistant: Natural language interface powered by real AI
  • Smart File Analysis: Deep code/text analysis with AI insights
  • Weather Planner: Intelligent activity suggestions based on conditions
  • Time Intelligence: Context-aware time and date responses
  • File Operations: Enhanced with AI-powered insights

๐Ÿš€ Quick Start

1. Installation

npm install

2. Configure Real AI (Recommended)

npm run setup-ai               # Interactive AI setup wizard

OR manually create .env with your API keys (see AI Setup Guide)

3. Start the Server

npm start                      # Start with real AI capabilities
npm run client              # Launch universal interactive client
npm run demo                # Try the demo mode

๐ŸŽฏ Architecture

This server features a clean, production-ready architecture optimized for AI capabilities:

src/
โ”œโ”€โ”€ core/                   # ๐Ÿง  Shared AI Components
โ”‚   โ”œโ”€โ”€ memory.js          # Memory management system
โ”‚   โ”œโ”€โ”€ ai-agent.js        # AI reasoning and planning engine  
โ”‚   โ””โ”€โ”€ tools.js           # Shared tool definitions and execution
โ”œโ”€โ”€ clients/               # ๏ฟฝ Smart Client Applications
โ”‚   โ””โ”€โ”€ universal.js       # Universal agentic AI client
โ””โ”€โ”€ index.js               # ๐Ÿค– Main agentic AI server

tests/                     # ๐Ÿงช Comprehensive Test Suite
โ”œโ”€โ”€ agentic.test.js        # AI capabilities testing
โ””โ”€โ”€ integration.test.js    # End-to-end validation

examples/                  # ๐Ÿ“š Usage Examples & Demos
โ””โ”€โ”€ simple-client.js       # Basic client implementation

๐Ÿ”„ Architecture Benefits

  • ๐Ÿ“ฆ Modular Design: Shared core components eliminate code duplication
  • ๐Ÿงน Clean Structure: Logical separation of servers, clients, tests, examples
  • โšก Optimized Performance: Lazy loading, memory management, result caching
  • ๐Ÿ”ง Better Maintainability: Single source of truth for AI logic and tools
  • ๐Ÿงช Comprehensive Testing: Dedicated test suite with integration coverage
  • ๐Ÿ“š Clear Examples: Focused examples for different use cases

๐Ÿ“– Usage Examples

Natural Language Interface

// Ask the AI assistant anything!
await client.callTool("ai_assistant", {
  request: "Analyze my TypeScript project and suggest architectural improvements",
  session_id: "my_session"
});

await client.callTool("ai_assistant", {
  request: "Help me organize these files using best practices",
  session_id: "my_session"
});

Smart File Analysis

await client.callTool("smart_file_analysis", {
  path: "package.json",
  analysis_type: "all"  // summary, structure, quality, security, all
});

Weather-Based Planning

await client.callTool("weather_planner", {
  city: "London",
  activity_type: "outdoor"  // outdoor, indoor, mixed
});

๐Ÿง  AI Intelligence Features

Multi-Step Planning

The AI automatically creates execution plans:

  1. Request Analysis: Understands what you want to accomplish
  2. Tool Selection: Chooses the best tools for each step
  3. Execution: Runs tools in optimal sequence
  4. Synthesis: Combines results into intelligent responses

Example Planning Process

User: "Analyze my project and suggest improvements"

AI Reasoning: "User wants project analysis. I should read files, analyze structure, and provide insights."

Execution Plan:
1. list_files (get project structure)
2. read_file (analyze key files like package.json)
3. ai_analyze_content (provide intelligent insights)

Result: Comprehensive analysis with specific recommendations

Memory & Context

  • Session-based memory: Remembers your conversation
  • Context awareness: Understands your project and preferences
  • Learning: Improves responses based on your interactions

๐Ÿ”ง Available Tools

๐Ÿค– AI-Powered Tools

Tool Description Example Usage
ai_assistant Natural language interface for complex tasks "Help me refactor this code"
smart_file_analysis AI-powered file analysis with insights Analyze code quality, structure, security
weather_planner Weather-based activity planning Get activity suggestions for any city

๐Ÿ“ File Operations

Tool Description
read_file Read file contents with AI analysis
write_file Write content to files
list_files List directory contents with intelligent categorization
get_weather Basic weather information

๐Ÿ“š AI Resources

Access advanced AI capabilities:

  • ai://conversation-history - Your conversation memory
  • ai://capabilities - Full AI feature documentation
  • ai://reasoning-engine - How the AI makes decisions
  • weather://cities - Available weather locations

๐ŸŽฏ Example Use Cases

Project Analysis

"Analyze my Node.js project structure and suggest improvements"
โ†’ AI reads files, analyzes dependencies, suggests organization

Weather Planning

"Plan outdoor activities in Paris considering current weather"
โ†’ AI checks weather, suggests appropriate activities with explanations

Code Review

"Review my TypeScript code for potential issues"
โ†’ AI analyzes code quality, security, and best practices

File Organization

"Help me organize my project files using industry standards"
โ†’ AI analyzes structure, suggests reorganization with reasoning

๐Ÿ› ๏ธ Development

Available Commands (New Architecture)

# ๐Ÿš€ Server Management
npm start                    # Start optimized agentic AI server
npm run start:traditional   # Start traditional TypeScript server
npm run dev                 # Development mode - traditional server
npm run dev:agentic         # Development mode - AI server

# ๐Ÿ‘ฅ Client Applications  
npm run client              # Universal auto-detecting client
npm run client:simple       # Basic example client
npm run demo                # Interactive demonstration

# ๐Ÿงช Testing & Validation
npm test                    # Test traditional server
npm run test:agentic        # Test AI capabilities  
npm run test:integration    # Test server switching
npm run test:all            # Run complete test suite

# ๐Ÿ”ง Development Tools
npm run build               # Build TypeScript components
npm run clean               # Remove redundant files (architectural cleanup)

Server Architecture

  • agentic-server.js: Main AI-powered server
  • src/index.ts: Traditional MCP server (TypeScript)
  • Memory System: Conversation and context management
  • AI Agent: Planning and reasoning engine
  • Tool Orchestration: Intelligent multi-tool workflows

๐Ÿค Integration

VS Code Extension

Configure in .vscode/mcp.json:

{
  "agentic-ai-server": {
    "command": "node",
    "args": ["agentic-server.js"],
    "description": "Agentic AI MCP Server with natural language processing"
  }
}

Client Development

const client = new Client({
  name: "my-agentic-client",
  version: "1.0.0"
});

// Connect to agentic server
const transport = new StdioClientTransport({
  command: "node",
  args: ["agentic-server.js"]
});

await client.connect(transport);

// Use natural language!
const result = await client.callTool("ai_assistant", {
  request: "What can you help me with?",
  session_id: "my_app"
});

๐Ÿ“ฆ Dependencies

Core MCP

  • @modelcontextprotocol/sdk - MCP protocol implementation
  • zod - Schema validation

AI Capabilities

  • openai - OpenAI API integration (optional)
  • @anthropic-ai/sdk - Anthropic API integration (optional)
  • uuid - Session management

Development

  • typescript - Type safety for traditional server
  • @types/node - Node.js type definitions

๐Ÿ”’ Configuration

AI Providers

Set environment variables for real AI:

export OPENAI_API_KEY="your-key-here"
export ANTHROPIC_API_KEY="your-key-here"

Or use the built-in mock AI for testing (no API keys required).

๐Ÿงช Testing

Comprehensive Testing

npm run test:agentic  # Test AI capabilities
npm run test         # Test traditional tools
npm run client       # Interactive testing

Example Test Sessions

  1. Start server: npm run agentic
  2. Open client: npm run client:interactive
  3. Try: ai help me understand this project
  4. Try: ai check weather in Tokyo and suggest activities

๐ŸŒŸ What Makes This Agentic?

Unlike traditional tool-based MCP servers, this agentic AI version:

  • Understands Intent: Processes natural language to understand what you really want
  • Plans Autonomously: Creates multi-step execution strategies without explicit instructions
  • Reasons About Context: Makes intelligent decisions based on your situation
  • Learns and Adapts: Improves responses based on conversation history
  • Synthesizes Intelligence: Combines multiple data sources into coherent insights
  • Proactive Assistance: Suggests improvements and alternatives you might not consider

๐Ÿ“ˆ Legacy Tools (Backward Compatible)

The traditional MCP server is still available at src/index.ts:

npm run build  # Build TypeScript
npm start      # Run traditional server

Traditional Tools

  • get_weather - Basic weather for cities
  • read_file - Read file contents
  • write_file - Write to files
  • list_files - List directory contents

Legacy Client Examples

npm run client           # Simple test client
npm run client:advanced  # Advanced demo client
npm run client:typed     # TypeScript client

๐Ÿ“ˆ Roadmap

  • Real AI Integration: Connect OpenAI/Anthropic APIs for production use
  • Advanced Memory: Persistent storage and long-term learning
  • Plugin System: Extensible AI tool ecosystem
  • Visual Interface: Web-based chat interface for AI interactions
  • Multi-modal AI: Support for images, documents, and rich media

Transform your MCP experience from simple tool execution to intelligent AI assistance! ๐Ÿš€

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured