Aintent Framework πŸš€

by openpandacodes

2 stars
298 downloads
Not rated
GitHub

About

A Model Context Protocol server for processing travel intents based on Deep Intent Architecture. This server provides a robust API for managing travel intents, generating deep flows, and creating DIML (Deep Intent Markup Language) representations.

Details

Author
openpandacodes
GitHub stars
2
Downloads
298
Categories
Developer Tools, Other

- Intent Processing: Create, retrieve, and process intents through a well-defined API.
- Natural Language Understanding: Parse and understand raw user intentions.
- Intent Decomposition: Transform intentions into structured objects with goals and constraints.
- Flexible Storage: Pluggable storage system with built-in in-memory implementation.
- Type Safety: Full TypeScript implementation with comprehensive type definitions.
- Error Handling: Robust error handling and logging system.

Clone the repository, run npm install, copy .env.example to .env, then start a development server with npm run dev (with hot reloading) or build and start production with npm run build and npm start. Use the API endpoints: POST /api/intent to create an intent and GET /api/intent/:id to retrieve one.

Intent MCP Server

A Model Context Protocol (MCP) server that processes natural language intents into structured, actionable formats. This server provides a robust API for managing and processing intents with a focus on extensibility and reliability.

Overview

This project implements an intent processing architecture that transforms natural language inputs into structured objects and generates executable workflows. It focuses on maintainability, type safety, and extensibility while providing a clean API for intent management.

Features

- 🎯 Intent Processing: Create, retrieve, and process intents through a well-defined API
- πŸ” Natural Language Understanding: Parse and understand raw user intentions
- 🧩 Intent Decomposition: Transform intentions into structured objects with goals and constraints
- πŸ’Ύ Flexible Storage: Pluggable storage system with built-in in-memory implementation
- πŸ“ Type Safety: Full TypeScript implementation with comprehensive type definitions
- πŸ›‘οΈ Error Handling: Robust error handling and logging system
- πŸ§ͺ Testing: Comprehensive test suite with Jest
- πŸ“š API Documentation: Clear API documentation and examples

Prerequisites

- Node.js (v18 or higher)
- npm or yarn

Installation

1. Clone the repository:

git clone https://github.com/openpandacodes/intent-mcp-server.git
cd intent-mcp-server

2. Install dependencies:

npm install

3. Create a .env file in the root directory:

cp .env.example .env

4. Update the .env file with your configuration settings.

Configuration

The server can be configured using environment variables:

- NODE_ENV: Environment (development, production, test)
- PORT: Server port (default: 3000)
- LOG_LEVEL: Logging level (debug, info, warn, error)

Usage

Development

Start the development server with hot reloading:

npm run dev

Production

Build and start the production server:

npm run build
npm start

Testing

Run tests:

npm test

Run tests with coverage:

npm run test:coverage

API Endpoints

Intent Management

- POST /api/intent: Create a new intent

  curl -X POST http://localhost:3000/api/intent \
-H "Content-Type: application/json" \
-d '{"rawIntent": "Your natural language intent here"}'

- GET /api/intent/:id: Get an intent by ID

  curl -X GET http://localhost:3000/api/intent/YOUR_INTENT_ID

Additional endpoints are documented in the API specification.

Health Check

- GET /health: Check server health status

Architecture

The server follows a clean architecture pattern with distinct layers:

1. Controllers: Handle HTTP requests and responses
2. Services: Implement core business logic and intent processing
3. Storage: Manage data persistence with pluggable implementations
4. Models: Define data structures and types

Key Components

- IntentController: Handles intent-related HTTP endpoints
- IntentService: Core service for intent processing
- StorageInterface: Abstract storage layer
- InMemoryStorage: Reference implementation of storage interface

Project Structure

intent-mcp-server/
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ controllers/     # HTTP request handlers
β”‚   β”œβ”€β”€ services/        # Business logic implementation
β”‚   β”‚   └── __tests__/  # Service tests
β”‚   β”œβ”€β”€ storage/        # Storage implementations
β”‚   β”œβ”€β”€ models/         # Type definitions
β”‚   └── utils/          # Utility functions
β”œβ”€β”€ tests/              # Test suites
└── config/             # Configuration files

Intent Structure

The system structures intentions into formal objects:

interface Intent {
  id: string;
  rawIntent: string;
  processed: {
    goals: Goal[];
    constraints: Constraint[];
    metadata: Record<string, unknown>;
  };
  status: "pending" | "processing" | "completed" | "failed";
  createdAt: Date;
  updatedAt: Date;
}

Error Handling

The server implements comprehensive error handling:

- Custom error classes for different types of errors
- Proper HTTP status codes and error responses
- Structured logging for debugging and monitoring
- Validation using TypeScript types

Contributing

1. Fork the repository
2. Create a feature branch (git checkout -b feature/amazing-feature)
3. Commit your changes (git commit -m 'feat: Add some amazing feature')
4. Push to the branch (git push origin feature/amazing-feature)
5. Create a Pull Request

Please ensure your code:
- Follows the existing style and conventions
- Includes appropriate tests
- Updates documentation as needed
- Uses conventional commit messages

License

MIT License - see LICENSE file for details

No reviews yet β€” be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.