Limitless Library

Limitless Library

MCP server for verified reuse infrastructure that lets agents query before work to obtain safe, permissioned results (exact component, source-free method, or abstention) with receiver-owned verification and non-disclosure guarantees.

Category
访问服务器

README

<p align="center"> <img src="docs/assets/limitless-library-mark.png" width="148" alt="Limitless Library mark"> </p>

<h1 align="center">Limitless Library</h1>

<p align="center"><strong>Verified reuse infrastructure for agents.</strong></p>

<p align="center"> <a href="LICENSE"><img alt="Apache-2.0 license" src="https://img.shields.io/badge/license-Apache--2.0-111111"></a> <a href="https://github.com/Univeracity/limitlesslibrary/actions/workflows/ci.yml"><img alt="CI status" src="https://github.com/Univeracity/limitlesslibrary/actions/workflows/ci.yml/badge.svg"></a> <img alt="Python 3.11 or newer" src="https://img.shields.io/badge/python-3.11%2B-111111"> <a href="docs/PROTOCOL.md"><img alt="MCP 2026-07-28" src="https://img.shields.io/badge/MCP-2026--07--28-111111"></a> <img alt="Pre-alpha" src="https://img.shields.io/badge/status-pre--alpha-6b7280"> </p>

<p align="center"> <a href="#quick-start">Quick start</a> · <a href="#how-verified-reuse-works">Lifecycle</a> · <a href="#mcp">MCP</a> · <a href="#documentation">Documentation</a> · <a href="CONTRIBUTING.md">Contributing</a> </p>


Reuse work without giving up trust

AI agents repeatedly solve problems that another agent has already solved. That wastes time and compute. Search alone does not make an earlier result safe to reuse: its authorization, compatibility, integrity, and actual adoption still need proof.

Limitless Library lets agents check before starting from scratch. It returns one permissioned result that fits the receiving environment—an exact component or source-free method—or abstains without disclosing a candidate. The receiver decides what may enter, verifies it locally, and records evidence that adopted work was actually used.

Verified reuse lifecycle: query before work; evaluate rights and fit; return an exact component, a source-free method, or a non-disclosing abstention; verify exact reuse locally; observe invocation; and return an adoption receipt.

At a glance

Property What it means
Three safe outcomes Exact component, source-free method, or abstention
Receiver-owned proof The receiving environment chooses installation paths and verification programs
Exact bytes Content-addressed installation refuses overwrite and rolls back on failure
Fail-closed verification No network, inherited secrets, or unsandboxed verifier fallback
Observed use Delivery is not counted as reuse until receiver code invokes the supplied component
Local by default The reference lifecycle needs no account, hosted service, or model API

Quick start

Try the complete local lifecycle from a source checkout. You need Python 3.11 or newer and Bubblewrap on Linux. On Debian or Ubuntu, install the one system dependency if it is not already present:

sudo apt-get install bubblewrap

Then run:

git clone https://github.com/Univeracity/limitlesslibrary.git
cd limitlesslibrary
./scripts/limitless

That is the only project command required. On first use, the launcher creates an isolated environment under .limitless/, installs the small Python dependency set, runs exact adoption, method guidance, and safe abstention, and retains inspectable evidence under .limitless/quickstart. It requires no environment activation, account, cloud service, model API, or model download. The initial dependency installation may require package-index access; the lifecycle itself runs without network access.

Check host readiness or retain another run at a path you choose:

./scripts/limitless doctor
./scripts/limitless demo --workspace ./limitless-demo

The demo refuses to overwrite an existing workspace. Later launcher runs reuse the isolated environment; running it without arguments keeps the original quick-start evidence and performs a disposable replay.

When integrating Limitless into another environment, install the checkout with python -m pip install .; the installed commands are limitless and limitless-mcp.

What the demo does

The bundled demo performs useful work on a structured agent audit event. It installs a narrow field-name redaction component and returns a sanitized copy while preserving non-sensitive data. It then demonstrates every safe outcome:

  1. Exact adoption — installs exact bytes without overwrite, runs receiver-owned checks, and proves receiver code invoked the component.
  2. Method guidance — returns a source-free method when Python bytes do not fit a JavaScript receiver.
  3. Safe abstention — withholds candidate details when no result fits.

The redactor protects configured structured field names; it is not a general scanner for secrets embedded in free text. See the local demo evidence map for the generated artifacts and manual inspection commands.

How verified reuse works

For exact reuse, the receiver—not the capsule—controls the trust boundary:

  1. A query describes the requested capability and receiving environment.
  2. Policy and compatibility gates select at most one eligible result.
  3. The receiver chooses the destination and provides digest-bound checks.
  4. Limitless installs content-addressed bytes without overwriting receiver files.
  5. Bubblewrap runs the checks with no network, no inherited secrets, bounded resources, and a read-only receiver mount.
  6. Runtime evidence proves invocation and an append-only receipt binds the decision, component, verification, and disposition.

If exact bytes do not fit, only a source-free method may cross. If no safe candidate exists, Limitless abstains without disclosing one.

What is open here

  • JSON Schemas for capsules, queries, decisions, receiver recipes, verifier results, and adoption receipts.
  • A source-minimized local catalog with policy and compatibility checks.
  • Exact-byte, no-overwrite installation with rollback on failure.
  • Receiver-owned adherence and obligation verification under Bubblewrap.
  • Python embedding and bounded stdio MCP connector surfaces.
  • Authoring and sealing commands, a one-command demo, conformance fixtures, and tests.

This repository is the inspectable foundation of the Limitless product. Its trust and foundation commitments are described in Open-source foundation.

Manual conformance proof

The smaller examples/ fixture exposes each primitive separately:

limitless validate-catalog --catalog examples/catalog

limitless query \
  --catalog examples/catalog \
  --request examples/requests/exact-python.json

Continue through installation, method guidance, abstention, and authoring in the conformance example.

MCP

Start the bounded local stdio server:

limitless-mcp --catalog examples/catalog

It exposes limitless_query_before_work and supports stateless MCP 2026-07-28 requests plus the legacy 2025-03-26 initialization flow. MCP is a decision channel, not an artifact transport; installation remains an explicit receiver-local operation.

Python callers can use query_local(...) or McpStdioConnector. See Protocol.

Authoring

The checked-in examples/authoring records omit derived digests. Seal them only after payload and receiver-verifier review:

limitless seal-capsule \
  --draft examples/authoring/capsule.draft.json \
  --root examples/catalog/hello-component \
  --output capsule.json

limitless seal-recipe \
  --draft examples/authoring/recipe.draft.json \
  --receiver examples/receiver \
  --output recipe.json

Outputs are immutable: both commands refuse to overwrite an existing path.

Documentation

Guide Purpose
Local demo Evidence map and manual inspection
Protocol Local API and MCP contract
Trust model Security boundaries and failure behavior
Conformance Required outcomes and fixture expectations
Open-source foundation Relationship between the open implementation and product
Examples Primitive-by-primitive walkthrough

Status and security

This is a pre-alpha reference implementation. It is intentionally local, single-operator, and Linux-only for contained verification. It is not yet a remote trust system or package manager, and technical integration is not treated as product adoption.

There is deliberately no unsandboxed verifier fallback. Querying and method selection work without Bubblewrap; exact adoption fails closed if containment is unavailable. Schemas and interfaces may change incompatibly before 0.1.0 stable.

Read the trust model before use. Report vulnerabilities according to SECURITY.md.

Contributing and license

Contributions should preserve fail-closed behavior, non-disclosure on abstention, and receiver ownership of verification. Start with CONTRIBUTING.md and the Code of Conduct.

Apache-2.0 licensed. See LICENSE and NOTICE.


<p align="center"> A <a href="https://univeracity.com">Univeracity</a> project · <a href="https://limitlesslibrary.com">limitlesslibrary.com</a> </p>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选