Skip to main content

ResearchTwin MCP Server

ResearchTwin MCP Server is the persistent action layer for ResearchTwin, a long-horizon research-project agent. It gives an OpenTrek-hosted agent real MCP tools for recording research work, retaining project state and advisor requirements, and producing evidence-based progress reports.

The repository is designed as a competition-quality reference implementation: RAG answers questions from research material, while MCP performs explicit, auditable changes to the project record.

All committed examples are fictional and anonymized. Operational data belongs in runtime_data/ and is intentionally excluded from Git.

Overview

A research assistant should do more than answer a single question. ResearchTwin keeps a durable record of what happened in an evolving project:

  • concrete activities, outcomes, blockers, and next steps;
  • the current project stage, tasks, risks, and decisions;
  • structured advisor requirements;
  • weekly, meeting, or stage reports assembled from persisted evidence.

The server is intended to be called by the ResearchTwin Agent in OpenTrek. It does not replace the agent, an LLM, or the existing ResearchTwin_Docs knowledge base.

Why MCP

RAG and MCP have distinct responsibilities:

Capability Responsibility
ResearchTwin_Docs RAG Retrieve and explain already available papers, notes, and technical materials.
ResearchTwin MCP Server Persist and retrieve research-management state through explicit tool calls.
ResearchTwin Agent Decide when to retrieve, record, query, and summarize; turn natural language into structured tool arguments.

This separation keeps the project record deterministic and reviewable. The MCP server does not need to run another LLM merely to store a structured activity or create a report from stored facts.

Architecture

flowchart LR
    U[Researcher] --> A[OpenTrek ResearchTwin Agent]
    A -->|retrieve and reason| R[ResearchTwin_Docs RAG]
    R --> K[Research papers and technical material]
    A -->|MCP function calls| M[ResearchTwin MCP Server]
    M --> T[Six research-management tools]
    T --> S[JSON persistence layer]
    S --> D[Runtime research records and reports]

See docs/architecture.md for component boundaries, persistence rules, and extension points.

Features

  • Official Python MCP SDK integration.
  • Streamable HTTP as the primary MCP transport at /mcp.
  • Optional command-line SSE compatibility transport, when selected at startup.
  • Dedicated stdio console entry point for uvx-hosted MCP clients.
  • Six focused tools instead of a monolithic server script.
  • UTF-8 JSON persistence with atomic replacement and in-process locking.
  • UUID record identifiers and timezone-aware ISO 8601 timestamps.
  • Structured success and error responses suitable for agent tool handling.
  • Windows PowerShell startup, test, smoke-test, and OpenTrek integration guidance.

MCP Tools

Tool Use it when the agent needs to…
record_research_activity Persist completed work, experimental results, blockers, reading, or next steps.
list_research_activities Recall work history using date, type, or tag filters.
update_project_status Merge or replace the current stage, task lists, risks, and decisions.
get_project_status Read the current project snapshot before planning or reporting.
record_advisor_instruction Preserve a structured advisor requirement, priority, deadline, and follow-up.
generate_research_report Build a weekly, meeting, or stage Markdown report from persisted data.

The complete input, output, and error contract is in docs/mcp_tools.md.

Project Structure

ResearchTwin-MCP-Server/
├── server.py                         # Repository-root launch entry point
├── Dockerfile                        # Streamable HTTP container image
├── src/researchtwin_mcp/
│   ├── config.py                     # RESEARCHTWIN_* settings validation
│   ├── server.py                     # MCP server and transport startup
│   ├── stdio_entry.py                # Dedicated uvx/stdin-stdout MCP entry
│   ├── models/                       # Validation helpers and schemas
│   ├── storage/                      # Shared JSON persistence layer
│   └── tools/                        # Activity, status, advisor, and report tools
├── scripts/
│   ├── start_server.ps1
│   ├── show_connection_info.py       # Read-only local/LAN URL helper
│   ├── smoke_test.py
│   ├── deployment_check.py           # Read-only deployment preflight/probe
│   ├── stdio_smoke_test.py            # Official Client stdio protocol smoke
│   └── wheel_stdio_smoke_test.py      # Non-editable wheel stdio validation
├── deploy/                           # systemd and Nginx deployment examples
├── tests/
├── docs/
├── examples/sample_data/             # Fictional, commit-safe demo data
└── runtime_data/                     # Local operational data; ignored by Git

Requirements

  • Windows PowerShell for local development, or Linux for deployment
  • Python 3.11 or newer; Python 3.11.x is the recommended competition environment
  • Network access only when OpenTrek runs from another device on the LAN

Installation

From a new Windows PowerShell session:

Set-Location C:\work\ResearchTwin-MCP-Server
python --version
where.exe python

python -m venv .venv
.\.venv\Scripts\Activate.ps1

python --version
where.exe python
python -m pip install --upgrade pip setuptools wheel
python -m pip install -e ".[dev]"

The first result from where.exe python should be the virtual environment interpreter after activation. If PowerShell blocks activation for the current session, use its documented process-scoped execution-policy procedure, then activate the environment again; do not weaken system-wide policy unnecessarily.

Configuration

The server reads these environment variables from the process environment:

Variable Default Meaning
RESEARCHTWIN_HOST 0.0.0.0 Bind address. The code default permits trusted LAN clients to reach the service; use 127.0.0.1 behind a Linux reverse proxy.
RESEARCHTWIN_PORT 8000 TCP port used by the selected transport.
RESEARCHTWIN_DATA_DIR runtime_data Local persistence directory, resolved relative to the repository root when relative.
RESEARCHTWIN_LOG_LEVEL INFO Python log level.

Copy .env.example to .env if you want local configuration that survives a new PowerShell session. .env is ignored by Git and is loaded from the repository root when the server starts. Existing process or system environment variables always take precedence over values in .env.

if (-not (Test-Path .env)) { Copy-Item .env.example .env }

For a one-off override, set values in the PowerShell session instead:

$env:RESEARCHTWIN_HOST = "0.0.0.0"
$env:RESEARCHTWIN_PORT = "8000"
$env:RESEARCHTWIN_DATA_DIR = "runtime_data"
$env:RESEARCHTWIN_LOG_LEVEL = "INFO"

Do not put keys, personal identifiers, or a user-specific IP address in source code or committed configuration. Treat .env as local operational configuration, not a secret-management system.

For a Docker container, use RESEARCHTWIN_HOST=0.0.0.0 inside the container and publish the container port only to host loopback when Nginx is the public entry point. The supplied Dockerfile already has safe container defaults for that pattern.

For a BaiLian-hosted stdio/uvx trial, set RESEARCHTWIN_DATA_DIR explicitly. The FC example path /tmp/researchtwin-data is EPHEMERAL / DEMO ONLY: it may be lost on instance recycling and is not long-term ResearchTwin Memory. See PyPI and BaiLian uvx preparation.

Run

With the virtual environment active:

python server.py

The default primary endpoint is:

http://<LAN_IPV4>:8000/mcp

For the local machine only, substitute 127.0.0.1 for <LAN_IPV4>. For OpenTrek on another trusted LAN device, use the Windows host's applicable IPv4 address. The helper script is also available:

.\.venv\Scripts\python.exe .\scripts\show_connection_info.py
.\scripts\start_server.ps1

show_connection_info.py only reads local configuration and network information. When it cannot unambiguously identify a LAN IPv4 address, it prints UNKNOWN; use ipconfig to choose the active Ethernet or Wi-Fi IPv4 address rather than guessing.

Streamable HTTP is the normal mode. For explicit SSE compatibility, run python server.py --transport sse and register the resulting /sse endpoint as documented in OpenTrek integration guidance. SSE is a separately selected transport mode, not an alternative URL to register alongside /mcp.

Hosted stdio mode for BaiLian uvx

The separate researchtwin-mcp-server console command runs the same six tools over MCP stdin/stdout. It does not start HTTP, Uvicorn, or a listener on port 8000. The package is not published to PyPI at this time, and uvx is not yet locally verified, so do not configure BaiLian from this repository alone. Follow the release-preparation guide after a project owner completes the manual PyPI release.

Demo network safety

  • Use 127.0.0.1 for local-only testing.
  • The default 0.0.0.0 bind is only for a trusted LAN or campus-network demonstration.
  • Do not expose this unauthenticated development server through public port forwarding.
  • Before any public or broader deployment, add HTTPS, authentication, authorization, a reverse proxy, and appropriate network controls.

Test

Run unit tests from the repository root:

pytest -v

Run the local MCP Streamable HTTP smoke test after dependencies are installed:

.\.venv\Scripts\python.exe .\scripts\smoke_test.py

The smoke test starts an isolated Streamable HTTP server and uses the official MCP client to discover exactly six tools, call all six successfully, verify persistence and report generation, and check representative isError failures. It uses temporary data rather than your runtime_data/ directory.

Run the dedicated stdio smoke test after installing the project:

.\.venv\Scripts\python.exe .\scripts\stdio_smoke_test.py

It launches the dedicated console entry point through the official MCP stdio client, verifies initialization and exactly six tools, records and reads back temporary data, and checks an MCP isError response. It does not listen on port 8000.

OpenTrek Integration

OpenTrek registration should use the UI's STREAMABLE choice and this URL shape:

http://<LAN_IPV4>:8000/mcp

Do not hand-invent a transportType JSON value. Select STREAMABLE on the OpenTrek MCP registration page, enter the URL, save, and verify that all six tools are discovered. See the step-by-step registration guide and OpenTrek integration guidance for LAN IPv4 discovery, SSE compatibility, VPN checks, and a safe firewall troubleshooting process.

Linux and remote deployment

The repository includes a non-root Docker image, a systemd service example, an Nginx reverse-proxy example, and a read-only deployment preflight script. They package the existing Streamable HTTP server without changing its six MCP tools. Follow the Linux deployment guide before using them.

The current service has no application-level authentication or authorization. Never leave http://<PUBLIC_IP>:8000/mcp publicly exposed. A public deployment needs HTTPS, a reverse proxy, restrictive network access, and an approved authentication plan in addition to the provided packaging.

Demo Scenario

An end-to-end demonstration can show the difference between knowledge retrieval and persistent action:

  1. The agent uses RAG to explain a fictional RNN-PPO paper or methods note.
  2. The researcher says that an RNN-PPO experiment was completed but training is still unstable.
  3. The agent calls record_research_activity with the outcome, problem, and next step.
  4. A fictional advisor requirement to focus on generalization is recorded with record_advisor_instruction.
  5. The agent checks project status, then calls generate_research_report for a group meeting.

The resulting Markdown report is grounded in persisted records, not a one-turn answer. A narrated runbook is in docs/demo_flow.md.

Privacy and Git Safety

The repository's .gitignore excludes .venv/, pycache/, Python bytecode, .env, pytest and Ruff caches, runtime_data/, and log files. These paths may contain local research activity, advisor context, reports, credentials, or machine-specific data.

Only the fictional, anonymous fixtures in examples/sample_data/ are safe to commit. Before any commit or push, inspect:

git status
git diff --check

Never commit real advisor messages, real paper content, chat transcripts, keys, VPN details, or personally identifying information.

Roadmap

  • Move from JSON files to a durable multi-user storage backend when needed.
  • Add ResearchTwin Memory and ResearchTwin_Core integration points.
  • Add paper-intelligence and citation workflows around the existing RAG layer.
  • Add a protected dashboard for reviewing project history and reports.
  • Improve the competition demo story without exposing real research data.

Documentation

Release files for researchtwin-mcp-server 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for researchtwin-mcp-server 0.1.0
File Size Uploaded
researchtwin_mcp_server-0.1.0.tar.gz 41.9 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for researchtwin-mcp-server 0.1.0
File Interpreter ABI Platform
researchtwin_mcp_server-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 74.8 kB

Release files / researchtwin_mcp_server-0.1.0.tar.gz

Download URL researchtwin_mcp_server-0.1.0.tar.gz
Size 41.9 kB
Tags Source
SHA-256 checksum
How to use checksums
42f729961abc2c217a8a38cea88f53ceabb5b6dbd60f50295289357b2da84658
BLAKE2b-256 checksum
How to use checksums
f6774f5222d762e3e732d632a6791b90f816bf72bf033455d8dc2a3ed0416a56
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release files / researchtwin_mcp_server-0.1.0-py3-none-any.whl

Download URL researchtwin_mcp_server-0.1.0-py3-none-any.whl
Size 32.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
6996aa88129199ebf927e41be70c9552ed4972e6359e30d776d91ddbcdc1e734
BLAKE2b-256 checksum
How to use checksums
9a60767c2dcd52278ad925c6ca1ee04035253036a1ac112bec764ef868206338
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/6.2.0 CPython/3.11.9

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page