The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Cytoscape Desktop MCP listing page.
An embedded Model Context Protocol (MCP) server for Cytoscape Desktop, packaged as a Cytoscape App. AI clients such as Claude Desktop connect to Cytoscape over HTTP and invoke tools that control the desktop application directly — loading networks, setting active views, and more.
NOTE: This app is experimental. The interface and available tools are subject to change.

Once installed, the app publishes an MCP endpoint inside Cytoscape's existing CyREST HTTP server — AI clients connect to the MCP endpoint with Streamable HTTP transport and call MCP tools which drive activity on the Cytoscape desktop display.
The app also adds two visual indicators to the Cytoscape Desktop UI:
a bold MCP button in the bottom-left status bar. The label is green when the MCP server is running and red when it is not. Clicking it opens the Agent Configuration dialog which displays the full MCP url and connection instructions for all supported agents.
every MCP tool invocation is recorded in Cytoscape's Task History panel (View > Show Task History), so you can see exactly which tools an agent called and when.
Install Cytoscape MCP Server from the App Store — this is the MCP server itself, and everything else on this page depends on it being installed and running:
Or from inside Cytoscape: Apps > App Manager, search for Cytoscape MCP Server, and install.
Alternatively, get the app jar:
Then:
After startup, the MCP status can be viewed via the MCP button in the status bar.
See docs/AgentConfiguration.md for step-by-step setup instructions for Claude Desktop, Claude Code, GitHub Copilot (VS Code), GitHub Copilot CLI, and OpenAI Codex CLI.
/mcp command or UI settings panel which will show status of connection to the MCP server and a list of tools currently published by this server, check to see if it is denoted as 'connected'.{rest.port} with Cytoscape's CyREST port (shown in the Agent Configuration dialog). You should see {"status":"ok","transport":"mcp-streamable-http"}. A "connection refused" error means Cytoscape is not running or the port is wrong.http://localhost:{rest.port}/mcp to validate or view current tools catalog - modelcontextprotocol/inspectorIf you want to build the app jar directly from source instead of using release jars.
Requirements:
The JAR is produced at build/libs/cytoscape-mcp-<VERSION>.jar.
For a full list of build targets:
Two components ship from this repo on separate tag namespaces:
| Component | Tag | Produces |
|---|---|---|
| Cytoscape App (the MCP server) | vX.Y.Z | cytoscape-mcp-<VERSION>.jar, plus a convenience copy of the .mcpb |
MCPB bridge (claude-extension/) | mcpb-vX.Y.Z | cytoscape-mcp.mcpb, and publishes to npm and the MCP Registry |
The bridge is versioned independently of the app because the bridge is distinctly separate deliverable with separate source tree for it to provide a stdio-to-http transport bridge that some agents may use. See registry/README.md for the release runbook.
The MCP server provides a human-readable catalog of every tool registered on the server formatted as Markdown with complete MCP Protocol JSON schema definitions for each tool's input and output. You can obtain the catalog through multiple options:
<CyRest Url>/mcp/manifest endpoint which can be retrieved by browser or command linemake build will generate the MCP manifest based on current code into a static file at build/generated/manifest/MCPManifest.md for same review.Invoking the tools requires some prompt engineering to provide key words or phrases which will activate the LLM to choose usage of a tool. Check out MCPManifest.md which contains 3 to 4 examples of Prompt snippets on each tool's description as reference of how to trigger LLM activation.
Properties are editable at runtime via Edit > Preferences > Properties > cytoscapemcp:
| Property | Default | Description |
|---|---|---|
mcp.ndexbaseurl | https://www.ndexbio.org | NDEx base URL (takes effect immediately) |
Full documentation is in the docs/ directory: