Objectiveai Mcp Proxy
БесплатноНе проверенMCP (Model Context Protocol) proxy server for ObjectiveAI
Описание
MCP (Model Context Protocol) proxy server for ObjectiveAI
README
The Swarm Harness.
Define and compose swarms of LLM agents. Spawn an agent to do things, spawn a swarm to score things, or hand a swarm a Docker sandbox — from the CLI, the SDKs, or your own agent.
Release Crates.io npm PyPI License: MIT
Packages
SDKs published to language-native registries. Pick the one for your stack:
| Language | Package | Install |
|---|---|---|
| Rust | objectiveai-sdk | cargo add objectiveai-sdk |
| TypeScript | @objectiveai/sdk | npm i @objectiveai/sdk |
| Python | objectiveai-sdk | pip install objectiveai-sdk |
| Go | objectiveai-sdk-go | go get github.com/ObjectiveAI/objectiveai/objectiveai-sdk-go |
Additional crates on crates.io: objectiveai-api, objectiveai-cli, objectiveai-mcp, objectiveai-mcp-proxy, objectiveai-mcp-laboratory, objectiveai-sdk-macros.
Binaries
Install all four prebuilt binaries with one command:
curl -fsSL https://raw.githubusercontent.com/ObjectiveAI/objectiveai/main/install.sh | bash
export PATH="$HOME/.objectiveai/bin:$PATH"
| Binary | What it does | Download |
|---|---|---|
objectiveai |
CLI + embedded viewer | latest |
objectiveai-api |
API server | latest |
objectiveai-viewer |
Standalone Tauri desktop app | latest |
Supported platforms: Linux x86_64, Linux aarch64, macOS x86_64, macOS aarch64, Windows x86_64. See Binaries & self-hosting for install flags and per-binary detail.
What ObjectiveAI is
ObjectiveAI is a harness for defining, composing, and running swarms of LLM agents — distributed across the CLI, the API, the SDKs, the MCP server, and your own agents. You define an Agent once — model, prompts, decoding parameters, output mode, tools, MCP servers. You compose Agents into a Swarm. You then run them in any of three ways: spawn a single agent to do work, spawn a whole swarm to collectively score candidates, or hand a swarm a Docker sandbox to act in.
Agents and Swarms are content-addressed, Git-hosted resources. The same swarm.json that powers your CLI invocation tonight is the one your colleague pins by commit SHA next month.
The mechanism is swarms: reusable, composable, version-tracked collections of configured models. Everything else (the CLI, the API, the web app, the MCP server, the SDKs in five languages) exists to drive swarms in the ways that matter.
Execution modes
Each mode resolves the same Agents and Swarms but does something different with them.
| Mode | What it does | Returns | Reach for it when |
|---|---|---|---|
| Agent completion | Spawn a single Agent to do work — call tools, talk to MCP servers, execute multi-turn loops, generate artifacts | Whatever the Agent produces | You need one agent to perform a discrete task |
| Vector completion | Spawn a swarm to score a fixed set of candidate responses — each agent votes, votes combine under weights | Vector of scores that sums to 1 | You want a calibrated, multi-model score |
Agent completions are the foundational orchestration layer; vector completions are built on top of the same underlying agent primitive.
Why a swarm scores better than one model
A single language model asked to score something hands back one sampled token and walks away from everything else it computed. The signal it had — how confident it really was, where it hedged, what it nearly chose instead — never leaves the model. ObjectiveAI is built to preserve that signal across an entire swarm.
Each agent in a swarm contributes a preference distribution over the candidates rather than a single sampled token. Those distributions combine across the swarm under weights to produce the final score. No discrete collapse. No lost signal.
Vector completion requested
│
▼
┌──────────────────────────────────┐
│ Swarm │
│ ┌────────┐ ┌────────┐ ┌──────┐ │
│ │ Agent │ │ Agent │ │ ... │ │
│ └───┬────┘ └───┬────┘ └──┬───┘ │
└──────┼──────────┼─────────┼─────┘
│ votes (preference distributions)
▼ ▼ ▼
┌────────────────────────────────┐
│ weighted combination │
└────────────────────────────────┘
│
▼
scores: [0.61, 0.28, 0.11] (sums to 1)
This matters twice over: once per model, and once across models. Different models have different failure modes and different training distributions. Combining them with weights is strictly more powerful than picking the one model that scores highest on average.
Why this system
Reusability across modes. Content-addressing throughout:
- Reusable. An Agent is a 22-character ID — define one once and reference it from any swarm or lab. A Swarm is a sorted set of
(agent_id, count)pairs. Define it once and run it for action, scoring, or sandboxed work without re-defining anything. - Reproducible. Every resource reference is
(owner, repo, commit). Pin a commit SHA, get the exact same agent / swarm your run used six months ago. - Composable. Swarms compose into bigger swarms. The CLI dispatches plugins as unknown subcommands. The viewer surfaces plugin UIs as sandboxed iframe tabs.
- Polyglot. Rust, TypeScript, Python, Go, and (in-progress) .NET SDKs share the same generated JSON Schema corpus. Field names and shapes are identical across languages.
Quick start
Install the CLI, API server, viewer, and MCP server from the latest release:
curl -fsSL https://raw.githubusercontent.com/ObjectiveAI/objectiveai/main/install.sh | bash
export PATH="$HOME/.objectiveai/bin:$PATH"
Set your API key:
objectiveai api headers x-objectiveai-authorization config set "apk_your_key_here"
CLI — spawn an agent to do work
objectiveai agents spawn \
--agent remote=github,owner=your-org,repository=writer-agent \
--inline '[{"role":"user","content":"Write a haiku about ocean waves."}]'
Pin a commit=<sha> segment to lock in a specific version of any remote resource. See Core primitives for a full explanation of Agents, Swarms, and the two execution modes, and SDKs for Python, Rust, Go, and .NET patterns including streaming.
SDK — TypeScript
import { ObjectiveAI, agentsCompletionsCreateAgentCompletion } from "@objectiveai/sdk";
const client = new ObjectiveAI({ authorization: process.env.OBJECTIVEAI_AUTHORIZATION });
const result = await agentsCompletionsCreateAgentCompletion(client, {
agent: { remote: "github", owner: "your-org", repository: "writer-agent" },
messages: [{ role: "user", content: "Write a haiku about ocean waves." }],
stream: false,
});
console.log(result);
Core primitives
Two resources (Agents, Swarms) define what's in the system; two execution modes (Agent completions, Vector completions) define what you can do with them. Resources are content-addressed Git-hosted JSON; execution modes resolve resources at request time and stream typed results back.
Agents
An Agent is a fully-specified configuration of a single upstream model: model identity, prompt structure, decoding parameters, output mode, tools, MCP servers, provider preferences. Agents are content-addressed via XXHash3-128 — the same configuration always produces the same 22-character base62 ID. IDs are deterministic because the serialized configuration is hashed after normalization (empty fields stripped, defaults canonicalized). Two Agents with identical effective settings are the same Agent.
Agents are stored as agent.json in Git repositories and referenced by owner/repo@commit everywhere a swarm needs an agent. Authoring agents lives in source control; calling them happens by reference.
{
"description": "Skeptical evaluator",
"upstream": "openrouter",
"model": "openai/gpt-4o",
"output_mode": "json_schema",
"temperature": 0.2,
"prefix_messages": [
{ "role": "system", "content": "You are a rigorous critic. Challenge assumptions." }
]
}
Each upstream (OpenRouter, Claude Agent SDK, Codex SDK) has its own agent type with its own parameter set. The same Agent can be driven in either execution mode — running solo in an agent completion, or contributing to the swarm's score in a vector completion.
Swarms
A Swarm is an ordered collection of Agents used together to score collectively. Swarms are immutable and content-addressed — their ID is computed from the sorted (full_id, count) pairs of their constituent agents. Weights are not baked into the swarm definition; they are execution-time parameters supplied with the request.
Each agent slot has a count (number of instances) and optional fallbacks. Duplicate agents are merged and their counts summed. The total agent count across all slots must be between 1 and 128.
{
"description": "Balanced scoring panel",
"agents": [
{
"upstream": "openrouter",
"model": "openai/gpt-4o",
"output_mode": "json_schema",
"prefix_messages": [
{ "role": "system", "content": "You are a rational skeptic. Ground every choice in logic." }
],
"count": 2
},
{
"upstream": "openrouter",
"model": "anthropic/claude-sonnet-4-20250514",
"output_mode": "tool_call",
"suffix_messages": [
{ "role": "system", "content": "You are an intuitive thinker. Trust your instincts." }
],
"count": 1
}
]
}
Swarms are stored as swarm.json in Git repositories and shared across runs. Because weights are external, the same swarm can be reused with different weight configurations without creating a new swarm.
Agent completions
An agent completion spawns a single Agent to do work. The Agent receives a task as a conversation and acts on it — calls tools, talks to MCP servers, executes a multi-turn loop, writes code, generates artifacts. Vector completions are built on top of agent completions; they're multi-agent orchestrations of the same underlying primitive.
The Agent is supplied by remote reference. Messages can include images, audio, and files in addition to text. Tool calls are detected mid-stream and executed automatically; MCP servers attached to the Agent are dialed transparently. The response carries a Continuation that captures the conversation state so the next call can pick up where this one left off.
{
"agent": { "remote": "github", "owner": "your-org", "repository": "writer-agent" },
"messages": [
{ "role": "user", "content": "Rewrite this commit message as a conventional-commits changelog entry." }
]
}
CLI: objectiveai agents spawn --agent remote=github,owner=...,repository=... --inline '...'. SDK: agentsCompletionsCreateAgentCompletion (JS) / create_agent_completion (Python) / agent::completions::http::create_agent_completion (Rust).
Vector completions
A vector completion spawns a swarm to score a fixed set of candidate responses. It takes a prompt plus the candidate responses, runs an agent completion across every Agent in the swarm, and each Agent votes for one of the candidates. Rather than collapsing to a single sampled token, ObjectiveAI reads each Agent's logprobs to capture its full preference distribution over the candidates. The votes combine under per-agent weights — execution-time parameters, never baked into the swarm — into a final score vector that sums to 1, one entry per candidate.
Large candidate sets are handled transparently by internal machinery (a prefix tree structured around the logprobs limit), so a single vector completion can score across hundreds of candidates while preserving the probability signal.
{
"swarm": { "remote": "github", "owner": "your-org", "repository": "scoring-swarm" },
"messages": [{ "role": "user", "content": "Rate this response: ..." }],
"responses": ["poor", "mediocre", "good", "excellent"]
}
CLI: the objectiveai vector command group. Both execution modes stream typed chunks over Server-Sent Events.
The resource graph
All resources reference each other via (owner, repository, commit) triples. Content-addressing plus commit pinning makes the full graph reproducible from any entry point.
agent.json <- swarm.json
(agents)
Remote references resolve lazily: the retrieval system walks the graph starting from the execution request, fetching and caching each resource exactly once. Deduplication is by (owner, repo, commit) triple. All fetches are content-verified — a cached resource is never re-fetched if the commit SHA matches.
SDKs
Every SDK exposes the same two execution modes: Agent Completions (spawn a single Agent to do work — tools, MCP, multi-turn loops) and Vector Completions (spawn a swarm to score candidates). Both support streaming via Server-Sent Events. The API emits incremental chunks; each SDK merges them into an accumulating object using an immutable merge system (TypeScript), a mutable push system (Python, Rust, Go), or equivalent. Types are generated from a shared JSON Schema corpus derived from the Rust SDK, so field names and shapes are identical across languages.
Languages
| Language | Package | Install | Runtime targets |
|---|---|---|---|
| Rust | objectiveai-sdk on crates.io |
cargo add objectiveai-sdk |
Any (async via reqwest + tokio) |
| TypeScript | @objectiveai/sdk on npm |
npm i @objectiveai/sdk |
Node.js, Deno, browser (CJS + ESM) |
| Python | objectiveai-sdk on PyPI |
pip install objectiveai-sdk |
CPython 3.10+ (includes PyO3 extension) |
| Go | github.com/ObjectiveAI/objectiveai/objectiveai-sdk-go |
go get github.com/ObjectiveAI/objectiveai/objectiveai-sdk-go |
Go 1.26+ |
| .NET | ObjectiveAI (NuGet — in progress) |
not yet published | net10.0 |
Streaming examples
The base URL defaults to https://api.objectiveai.dev in all SDKs. Auth is passed as OBJECTIVEAI_AUTHORIZATION (env var) or via the client constructor. Each example spawns an agent with stream: true and consumes the streamed chunks.
TypeScript
import { ObjectiveAI, agentsCompletionsCreateAgentCompletion } from "@objectiveai/sdk";
const client = new ObjectiveAI({ authorization: process.env.OBJECTIVEAI_AUTHORIZATION });
const stream = await agentsCompletionsCreateAgentCompletion(client, {
stream: true,
agent: { remote: "github", owner: "your-org", repository: "writer-agent" },
messages: [{ role: "user", content: "Write a haiku about ocean waves." }],
});
for await (const chunk of stream) {
process.stdout.write(JSON.stringify(chunk) + "\n");
}
Python
import asyncio, os
from objectiveai_sdk.client import ObjectiveAI
from objectiveai_sdk.agent.completions.http import create_agent_completion
async def main() -> None:
client = ObjectiveAI(authorization=os.environ.get("OBJECTIVEAI_AUTHORIZATION"))
params = {
"stream": True,
"agent": {"remote": "github", "owner": "your-org", "repository": "writer-agent"},
"messages": [{"role": "user", "content": "Write a haiku about ocean waves."}],
}
stream = await create_agent_completion(client, params)
acc = None
async for chunk in stream:
if acc is None:
acc = chunk
else:
acc.push(chunk)
print("output:", acc)
asyncio.run(main())
Rust
use futures::StreamExt;
use objectiveai_sdk::{HttpClient, agent::completions};
#[tokio::main]
async fn main() -> Result<(), objectiveai_sdk::HttpError> {
let client = HttpClient::builder()
.authorization(std::env::var("OBJECTIVEAI_AUTHORIZATION").ok())
.build();
let mut stream = completions::http::create_agent_completion_streaming(
&client,
completions::request::params(/* agent: remote ref, messages */),
).await?;
while let Some(Ok(chunk)) = stream.next().await {
println!("{chunk:?}");
}
Ok(())
}
Go and .NET
The Go SDK is fully auto-generated from the JSON Schema corpus. Types are strict-validated on unmarshal. The client exposes generic helpers PostUnary[T] / PostStreaming[T] / GetUnary[T] / DeleteUnary[T]; endpoint functions wrap these. A wazero-hosted WASM binary (compiled from the Rust core) provides chunk-to-unary conversion and merge verification without CGO.
The .NET SDK (ObjectiveAI, targeting net10.0) is in active development. The NuGet publish workflow is not yet wired up, so it must be built from source for now.
Binaries & self-hosting
curl -fsSL https://raw.githubusercontent.com/ObjectiveAI/objectiveai/main/install.sh | bash
export PATH="$HOME/.objectiveai/bin:$PATH"
All binaries land in ~/.objectiveai/bin/ and are added to PATH. The CLI (objectiveai) self-updates on startup; re-run the installer to upgrade objectiveai-api and objectiveai-viewer.
objectiveai (CLI)
The primary user-facing binary. Built with clap derive macros and emits newline-delimited JSON (NDJSON) on stdout. Top-level command groups: agents, swarms, functions, laboratories, channels, tasks, development, daemon, db, api, viewer, python, update.
objectiveai agents list
objectiveai agents spawn --agent remote=github,owner=...,repository=... --inline '...'
objectiveai laboratories spawn
The default build embeds the Tauri viewer as a sidecar: running a streaming command opens a live viewer window backed by an in-process HTTP server. Pass --no-viewer at install time for a smaller build without the embedded viewer. JSON schemas for every public type are accessible at objectiveai schemas list / objectiveai schemas output <name>.
objectiveai-api
Standalone HTTP API server. Run it with:
objectiveai-api
Key environment variables (all optional):
| Variable | Default | Effect |
|---|---|---|
ADDRESS |
0.0.0.0 |
Bind address |
PORT |
5000 |
Bind port |
OBJECTIVEAI_ADDRESS |
https://api.objectiveai.dev |
Upstream ObjectiveAI address when proxying |
OBJECTIVEAI_AUTHORIZATION |
— | Bearer token for the ObjectiveAI API |
OPENROUTER_AUTHORIZATION |
— | Bearer token for OpenRouter |
GITHUB_AUTHORIZATION |
— | GitHub token for resource retrieval |
MCP_AUTHORIZATION |
— | Bearer token for outbound MCP calls |
The server is streaming-first: every layer (agent completions, vector completions) produces a typed stream of chunks and yields immediately to the HTTP response — nothing is buffered in the hot path.
objectiveai-viewer
Standalone Tauri desktop application. Presents the same UI that the CLI embeds as a sidecar, but runs as a first-class window manager process rather than being spawned in-process by a CLI command. Reach for it when you want the viewer always open and decoupled from CLI invocations.
MCP (served by the daemon)
The daemon itself serves MCP (Model Context Protocol) over streamable HTTP at /mcp on its own address, executing commands in-process. Editors and agents (Claude, Cursor, etc.) point at http://127.0.0.1:<daemon-port>/mcp (plus the X-OBJECTIVEAI-SIGNATURE header when a daemon secret is configured).
Three crates make up the MCP surface:
- the daemon's
/mcproute — the primary MCP surface. Wraps the CLI as MCP tools over streamable HTTP, in-process. What users expose upstream for distributed agents. objectiveai-mcp-proxy— a multiplexing sidecar ofobjectiveai-api. Terminates an MCP client connection and forwards tool calls to an upstream MCP server or to ObjectiveAI-native tools. Embedded insideobjectiveai-apiat runtime.objectiveai-mcp-laboratory— MCP filesystem helpers (read/write/list) adapting the SDK's filesystem layer to MCP tool calls.
Install flags
Pass flags to bash -s -- after the installer URL:
curl -fsSL https://raw.githubusercontent.com/ObjectiveAI/objectiveai/main/install.sh | bash -s -- --no-viewer
| Flag | Effect |
|---|---|
--no-viewer |
Skips the standalone objectiveai-viewer; installs the CLI variant without an embedded Tauri viewer (smaller binary). |
--no-api |
Skips objectiveai-api. |
--cli-only |
Equivalent to --no-viewer --no-api. Only objectiveai is installed. |
Flags compose freely.
Self-host vs hosted
The hosted API at https://api.objectiveai.dev requires no setup and is the default for the CLI and all SDKs. Run your own objectiveai-api when you need total control over data routing — for example, to point agents at private upstream providers not available on OpenRouter, to meet on-prem or air-gapped requirements, or to run the full execution pipeline locally without network egress. Configure the CLI to point at your instance with objectiveai api mode set local and objectiveai api local address set http://localhost:5000.
Supported platforms: Linux x86_64, Linux aarch64, macOS x86_64, macOS aarch64 (Apple Silicon), Windows x86_64.
Plugins
A plugin extends ObjectiveAI with tools an agent can call, and optionally with UI in the viewer. It is a container: an MCP server built from a Containerfile in your repository, run as an ephemeral laboratory container for the completion that uses it. A plugin may also ship a viewer half — tabs, channel-request handlers, and scripts injected into browser tabs — from the same repository, under the same identity.
Both halves are declared by one objectiveai.json at the repository root.
An agent uses a plugin by declaring its coordinates:
{ "plugins": [{ "owner": "you", "name": "my-plugin", "version": "v0.1.0" }] }
The laboratory host fetches that GitHub repository at the v-prefixed tag, builds the image, and starts a container per completion. Its tools reach the agent prefixed with the MCP server's name — a tool called greet arrives as my-plugin_greet.
First-party plugins
Built and maintained by ObjectiveAI:
- psychological-operations — run autonomous persona agents on X (Twitter) and Discord. Each agent is an X account plus a Discord bot, addressed by a tag, with tool-mediated presence on both platforms (the
xanddiscordMCP servers), scored ingestion pipelines ("psyops" that pull posts/messages, score them through a swarm, and deliver the survivors to agents' work queues), and event-driven wake-ups from a resident daemon that fires when an agent is mentioned, replied to, or DM'd. - mundus-animarum — persistent, self-authored "souls" for agents. A key/value store keyed by an agent's content-addressed ID, with cross-agent lookups, subscriptions, and change notifications; every instance of the same agent definition shares one soul, which the agent can rewrite over time.
- arcanum — skills for agents. Lets agents load skills and governs which agents may use which skills.
- quas-wex-exort — programmatic invocation of MCP tools and the ObjectiveAI CLI from within an agent, including running them as background tasks (create / list / wait / cancel) and batched multi-calls.
Scaffolding a new plugin
scaffold.sh lays down a complete plugin — both halves, one manifest — into the directory you run it from. The plugin's name is the directory's name, so that is the only thing you choose up front:
mkdir my-plugin && cd my-plugin
curl -fsSL https://raw.githubusercontent.com/ObjectiveAI/objectiveai/main/scaffold.sh | bash -s -- rust
You get:
my-plugin/
├── objectiveai.json # the manifest — both halves, at the root
├── README.md
├── mcp/ # the MCP server (Rust): the tools an agent calls
├── viewer/ # tabs, channel handlers, browser scripts
└── .agents/skills/ # skills for a coding agent working on the plugin
The name is written into the Cargo package, the binary, the lockfile, the Containerfile, the MCP server's NAME constant, and package.json. rust (or rs) is currently the only MCP language.
Then register the root — one directory, both halves — and start the viewer's watch build:
objectiveai laboratories spawn # once per machine; never auto-started
objectiveai development plugins mcp create \
--owner you --name my-plugin --version v0.1.0 --path "$PWD"
objectiveai development plugins viewer create \
--owner you --name my-plugin --version v0.1.0 --path "$PWD"
cd viewer && pnpm install && pnpm run dev
An agent declaring you/[email protected] now gets your working tree instead of a git tag. After editing the MCP half, development plugins mcp reset … — a registered plugin still takes the image-exists fast path, so without it the old image keeps serving. The viewer half needs no reset: the watch build writes, and the viewer reloads open tabs.
To release, tag vX.Y.Z, push, and delete the registrations.
The manifest
objectiveai.json at the repository root. At least one of mcp / viewer must be present; a plugin may ship either or both.
| Field | Type | Notes |
|---|---|---|
description |
string | One-line summary. |
mcp.containerfile |
string | Repo-relative path (forward slashes). The file's own directory is the build context, so mcp/Containerfile sees mcp/ as its root. |
mcp.port |
number | The port the server listens on inside the container. Must match PORT in the server and EXPOSE in the Containerfile. |
mcp.postgres |
bool | Required. Opts the plugin in to its own database; only then is OBJECTIVEAI_POSTGRES_URL set in the container. |
mcp.development.caches |
string[] | CONTAINER paths kept between development rebuilds (e.g. /build/target). Ignored for a released plugin. |
viewer.containerfile |
string | As above; its own directory is the build context. |
viewer.output |
string | Absolute path INSIDE the built image whose contents are the built assets. |
viewer.tabs |
array | { title, module, styles } for a normal tab, or { channel_key, module, styles } for a channel-request handler. module/styles are relative to the built output. |
viewer.scripts |
array | { name, module } — classic scripts a tab can inject into a browser tab it spawns. |
viewer.development.output |
string | HOST path, relative to the REGISTERED directory, where the watch build writes (viewer/dist in the scaffolded layout). |
{
"description": "An ObjectiveAI plugin: a Rust MCP server and a viewer extension.",
"mcp": {
"containerfile": "mcp/Containerfile",
"port": 8080,
"postgres": true,
"development": { "caches": ["/build/target", "/usr/local/cargo/registry"] }
},
"viewer": {
"containerfile": "viewer/Containerfile",
"output": "/dist",
"tabs": [{ "title": "home", "module": "./home.js", "styles": ["./home.css"] }],
"scripts": [{ "name": "capture", "module": "./capture.js" }],
"development": { "output": "viewer/dist" }
}
}
Identity is not in the manifest: owner, name and version come from the repository and its tag on release, and from the explicit --owner/--name/--version of a development registration otherwise.
Web app & ecosystem
Web app
objectiveai.dev is the production web interface, built with Next.js (App Router). The app provides browsing and detail views for Swarms (/swarms, /{id}), and lets you run a swarm against chosen candidates and view per-agent vote breakdowns and aggregate scores. A /demo route renders live component prototypes including vote matrices, decomposition views, and contribution waterfalls.
Examples
The examples/ directory collects real software built on top of ObjectiveAI, with links to full source repositories.
psychological-operations — an agentic X (Twitter) scraper and scoring pipeline (repo). It pairs human-driven Chrome automation with ObjectiveAI to rank scraped tweets along operator-defined axes. The project defines two primary objects: Scrapes (declarative search jobs that scroll and parse x.com into SQLite) and PsyOps (scoring jobs that pull tagged posts and run them through ObjectiveAI using a chosen swarm and strategy — including Swiss System tournament-style ranking). A pilot study ranked tweets from a set of public startup-founder accounts along an unsettlingness axis; published artifacts are content-addressed and reproducible.
Ecosystem
objectiveai-claude-agent-sdk-runner— a long-lived Python stdio NDJSON server that runs concurrent Claude Agent SDK sessions on behalf ofobjectiveai-api. The Rust API caller spawns and multiplexes requests over a single stdin/stdout pair using a semaphore-backed FIFO queue; each request carries a stringidfor demultiplexing events from N concurrent streams.objectiveai-codex-sdk-runner— same architecture as the Claude runner but targets the OpenAI Codex SDK. Authentication is inherited from~/.codex/auth.json; the runner shells out to thecodexbinary and streamsThreadEventobjects back to the Rust caller.objectiveai-github-discord-notifier— a Python FastAPI webhook server (Docker-deployable) that validates GitHub webhook signatures and forwards pull-request and issue events to a configured Discord channel.objectiveai-json-schema— generated JSON Schema files for every public serializable type in the Rust SDK, named using dot-separated module paths. Several hundred schemas cover agents, swarms, completions, CLI output, MCP types, and more. These files drive code generation for the Go SDK and .NET SDK and can be used by any downstream tooling that needs machine-readable type definitions.
Repository structure
A single git repository contains the SDK core, server, clients, integrations, and tools.
objectiveai/
│
├── # SDK core (Rust)
│ ├── objectiveai-sdk-rs/ # Rust SDK — types, validation, compilation
│ ├── objectiveai-sdk-rs-macros/ # Procedural macros for the Rust SDK
│ ├── objectiveai-sdk-rs-cffi/ # C FFI bindings (expose SDK to C/C++)
│ ├── objectiveai-sdk-rs-pyo3/ # PyO3 bindings (Rust extension for Python)
│ └── objectiveai-sdk-rs-wasm-js/ # WASM bindings for browser / Node.js
│
├── # SDKs (other languages)
│ ├── objectiveai-sdk-js/ # TypeScript/JavaScript SDK (npm)
│ ├── objectiveai-sdk-py/ # Python SDK (PyPI)
│ ├── objectiveai-sdk-go/ # Go SDK
│ └── objectiveai-dotnet/ # .NET SDK (NuGet: ObjectiveAI)
│
├── # Server & binaries
│ ├── objectiveai-api/ # API server (self-hostable or importable)
│ ├── objectiveai-cli/ # Command-line interface
│ ├── objectiveai-viewer/ # Desktop viewer app (Tauri)
│ └── objectiveai-mcp/ # retired standalone MCP server (folded into the daemon, #276)
│
├── # MCP integration
│ ├── objectiveai-mcp-proxy/ # MCP proxy — multiplexes tool calls
│ ├── objectiveai-mcp-laboratory/ # MCP filesystem helpers
│ ├── objectiveai-mcp-plugin-framework-rs/ # Rust framework for writing plugin MCP servers
│ └── objectiveai-db-proxy/ # Postgres-over-WebSocket conduit injected into plugin containers
│
├── # Plugin scaffolds (what scaffold.sh assembles)
│ ├── objectiveai-plugin-scaffold-rs/ # the shared root: one manifest covering both halves
│ ├── objectiveai-mcp-plugin-scaffold-rs/ # the MCP half (Rust)
│ └── objectiveai-viewer-plugin-scaffold/ # the viewer half (tabs, handlers, scripts)
│
├── # Runners
│ ├── objectiveai-claude-agent-sdk-runner/ # Concurrent Claude Agent SDK runner
│ └── objectiveai-codex-sdk-runner/ # Concurrent OpenAI Codex SDK runner
│
├── # Web & tools
│ ├── objectiveai-web/ # Next.js production web interface
│ ├── objectiveai-cocoindex/ # CocoIndex integration (Python)
│ ├── objectiveai-github-discord-notifier/ # GitHub webhook → Discord notifier
│ └── objectiveai-json-schema/ # Generated JSON Schema files
│
└── # Other
├── examples/ # Usage examples
├── bin/ # Vendored build tool binaries
├── .agents/skills/ # Skills for coding agents working in this repo
├── scaffold.sh # Scaffold a new plugin into the current directory
└── *.sh # Root scripts: build, install, publish, version
Contributing & development
Prerequisites
- Rust — stable toolchain via rustup. No pinned
rust-toolchain.toml; use the current stable release.wasm-packandmaturinare installed automatically into./bin/bybuild.sh(its first step). - Node.js + pnpm 10.25.0 — the workspace
packageManagerfield pins this version. Install pnpm viacorepack enableornpm i -g [email protected]. - Python — required for
objectiveai-sdk-py(PyO3/maturin extension build) and the Claude/Codex agent-SDK runners (PyInstaller).
Build
pnpm install # JS workspace dependencies
cargo build --release # Rust crates
bash build.sh # full monorepo build in dependency order
# (first installs pinned build tools into ./bin/)
build.sh generates JSON schemas, compiles WASM and CFFI bindings, builds all language SDKs (.NET, Go, Python, JS), and produces viewer artifacts.
Test
bash test.sh # all suites in parallel (spawns a local API server)
cargo test # Rust workspace tests
pnpm test # JS/TS tests
test.sh exports OBJECTIVEAI_TEST_PORT and runs per-package test.sh scripts concurrently across objectiveai-sdk-rs, objectiveai-api, objectiveai-json-schema, objectiveai-cli, objectiveai-mcp-proxy, objectiveai-sdk-js, objectiveai-sdk-py, objectiveai-sdk-go, and objectiveai-viewer. Tests must not hit the production API — use the local server, mocks, or fixtures.
Conventions
- Package manager: use
pnpm, nevernpm. Filter to a single workspace package withpnpm --filter <package-name> run <script>. - No type re-exports in Rust. When an import path is wrong, fix it at the call site. Never add re-export aliases or shim
pub useentries to paper over a broken import. mod.rsdiscipline.mod.rsfiles contain only module declarations and re-export globs — no functions, structs, enums, traits, or impls. Every entry must be eitherpub mod foo;ormod foo; pub use foo::*;.- No network-hitting tests. Tests must not contact the production API. Mock responses or use local fixtures.
- Test failures are not pre-existing issues. Every failure must be investigated and fixed; never dismiss one to move on.
- Single shared version. All packages share one version number. Bump atomically across Cargo.toml, package.json, pyproject.toml, .csproj, and all inter-package dependency references with
bash version.sh <new-version>. - Publishing. The
ReleaseGitHub Actions workflow fires on every push to main, gated on theobjectiveai-cliversion: if the GitHub Releasev<version>doesn't exist yet, it rolls out everything for that version, all-or-nothing — the six per-platform binary zips (each built bybuild.sh --release --no-sdk) plus the language SDKs published sequentially (rust → python → javascript → golang). The SDK jobs ship already-committed artifacts (no codegen, no wasm build), so commit fresh generated artifacts (viabuild.sh) before bumping the version.
License
MIT.
Установка Objectiveai Mcp Proxy
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/ObjectiveAI/objectiveaiFAQ
Objectiveai Mcp Proxy MCP бесплатный?
Да, Objectiveai Mcp Proxy MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Objectiveai Mcp Proxy?
Нет, Objectiveai Mcp Proxy работает без API-ключей и переменных окружения.
Objectiveai Mcp Proxy — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Objectiveai Mcp Proxy в Claude Desktop, Claude Code или Cursor?
Открой Objectiveai Mcp Proxy на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
GitHub
PRs, issues, code search, CI status
автор: GitHubFilesystem
Secure file operations with configurable access controls.
Memory
Knowledge graph-based persistent memory system.
Template MCP Server
A CLI tool to create a new Model Context Protocol server project with TypeScript support, dual transport options, and an extensible structure
автор: mcpdotdirectCompare Objectiveai Mcp Proxy with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории development
