Inception ICORE Server

Created By
nbursaa year ago
Model–Context–Protocol (MCP) Server A modular, extensible Rust-based server providing short-term, long-term, and latent memory services, a chat endpoint backed by a BaseAgent + Sentience DSL, and seamless integration with ChromaDB and LLM services.
Overview

What is Inception ICORE Server?

Inception ICORE Server is a modular, extensible Rust-based server designed to provide short-term, long-term, and latent memory services, along with a chat endpoint supported by a BaseAgent and Sentience DSL.

How to use Inception ICORE Server?

To use the server, clone the repository, set up the environment variables, and run it using Docker Compose or locally without Docker. You can interact with the server through its well-documented HTTP API.

Key features of Inception ICORE Server?

  • Modular memory layers for short-term, long-term, and latent memory.
  • A chat endpoint that integrates with a BaseAgent and optional Sentience DSL.
  • HTTP API built on Axum for easy interaction with memory and agent functionalities.
  • Docker Compose setup for easy orchestration of services.

Use cases of Inception ICORE Server?

  1. Building AI applications that require memory management.
  2. Creating chatbots with advanced memory capabilities.
  3. Developing autonomous agents that can learn and recall information.

FAQ from Inception ICORE Server?

  • Is the Inception ICORE Server production-ready?

No, it is currently a work in progress and under active development.

  • Can I use it for commercial purposes?

No, it is licensed under a Proprietary Non-Commercial License, allowing only research and educational use.

Project Info
Created At
a year ago
Updated At
a year ago
Author Name
nbursa
Star
0
Language
Rust
License
View license

Recommend Servers

View All
Docwand

14 hours ago
//beforeyouship — LLM Cost Modeling From Your Editor
@Indiegoing

Query realistic LLM cost models without leaving your editor. beforeyouship models the **true monthly cost** of an LLM app architecture — retries, prompt caching, batch discounts, infra overhead, and 3×/10× growth — across GPT-5.x, Claude, Gemini, DeepSeek, and more. Not a token calculator: a planning tool for the design phase, before you commit to a stack. **No API key needed to try it** — demo mode covers the six free-tier models. A Pro key from [beforeyouship.dev](https://beforeyouship.dev) unlocks the full 18-model catalog. ## What you can ask - "How much will a RAG chatbot cost at 10,000 requests/day?" - "Compare Claude Haiku vs Gemini Flash pricing for my workload" - "What's the cheapest model for a multi-step agent at scale?" - "Show me current per-token prices for Anthropic models" ## Tools ### `estimate_cost` Full cost model for an architecture at a given usage level. Returns Naive / Realistic / Worst Case monthly cost per model, 3×/10× growth scenarios, and an opinionated recommendation with reasoning. ### `get_model_prices` Current per-1M-token pricing — input, output, cached input, batch — with context windows and staleness metadata. ### `list_archetypes` Seven preset architecture patterns (simple chatbot, chatbot with history, RAG pipeline, multi-model router, coding assistant, document processor, multi-step agent) used as starting points for estimates. ## Setup **Claude Code:** ​```bash claude mcp add --transport http beforeyouship https://beforeyouship.dev/api/mcp ​``` **Cursor / other clients** — add a remote server: ​```json { "mcpServers": { "beforeyouship": { "type": "streamable-http", "url": "https://beforeyouship.dev/api/mcp" } } } ​``` Add an `Authorization: Bearer bys_...` header with a Pro key for the full catalog. ## Try it > Estimate the monthly cost of a RAG pipeline at 10,000 requests/day

14 hours ago