Devici MCP Server

A Model Context Protocol (MCP) server for interacting with the Devici API. This server provides LLM tools to manage users, collections, threat

Local serverstdioPython

What is the Devici MCP MCP server?

Connect Devici MCP to Claude, Cursor or any other MCP client and it stops being a tab you switch to. A Model Context Protocol (MCP) server for interacting with the Devici API. This server provides LLM tools to manage users, collections, threat models, components, threats, mitigations, teams, and dashboard data through the Devici platform. The devici mcp mcp server is what makes that connection.

Installation

The server ships on PyPI as git, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Cline — The Cline tool exposed by this server
  • Continue — The Continue tool exposed by this server
  • Cursor — The Cursor tool exposed by this server
  • Prerequisites — The Prerequisites tool exposed by this server
  • Setup — The Setup tool exposed by this server
  • Testing — The Testing tool exposed by this server
  • Building — The Building tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: DEVICI_API_BASE_URL, DEVICI_CLIENT_ID, DEVICI_CLIENT_SECRET. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • uv installed - Python 3.10 or higher

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Where it fits

Plenty of team communication servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Devici MCP's toolset — Cline, Continue, Cursor and 4 more — is a fair guide to whether it matches your workflow. It is maintained by geoffwhittington; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
ClineThe Cline tool exposed by this server.
ContinueThe Continue tool exposed by this server.
CursorThe Cursor tool exposed by this server.
PrerequisitesThe Prerequisites tool exposed by this server.
SetupThe Setup tool exposed by this server.
TestingThe Testing tool exposed by this server.
BuildingThe Building tool exposed by this server.

How to install the Devici MCP MCP server

#### Option 2: From PyPI (Future)
```json
{
  "mcpServers": {
    "devici": {
      "command": "uvx",
      "args": ["devici-mcp-server"],
      "env": {
        "DEVICI_API_BASE_URL": "https://api.devici.com/v1",
        "DEVICI_CLIENT_ID": "your-client-id-here",
        "DEVICI_CLIENT_SECRET": "your-client-secret-here"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

  • uv installed - Python 3.10 or higher
VariableDescriptionRequired
DEVICI_API_BASE_URLEndpoint or connection string the server talks to.Yes
DEVICI_CLIENT_IDConfiguration value read at startup.Optional
DEVICI_CLIENT_SECRETCredential the server authenticates with.Yes

Example prompts to try

  • Use Devici MCP to Cline.
  • Use Devici MCP to Continue.
  • Use Devici MCP to Cursor.

Frequently asked questions

It connects Devici MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 7 tools (Cline, Continue, Cursor, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Devici MCP directly.