Factifai MCP Server

A MCP server for Factifai

Local serverstdio

What is the Factifai MCP server?

A MCP server for Factifai. The factifai mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 3 defined tools rather than through you.

What it actually does

A Model Context Protocol (MCP) server for Factifai integration with any MCP-compatible AI tool. This server is designed to be tool-agnostic, meaning it can be used with any tool that supports the MCP protocol. This server currently exposes tools to create tests asynchronously and get the result of the test.

Its toolset

Everything the assistant can do here goes through one of these:

  • testWithFactifai — Start a test with Factifai
  • getFactifaiSessionResult — Get test result
  • listFactifaiSessions — List tests

Configuration

You will need 5 environment variables: MODEL_PROVIDER, OPENAI_API_KEY, AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_DEFAULT_REGION. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js >= 16.0.0 - Hai Build, Cursor, Windsurf, Claude Desktop or any MCP Client

Adding it to your client

Installation goes through your MCP client rather than a global install: point it at playwright on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.

When to reach for it

Plenty of developer tooling 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. Factifai's toolset — testWithFactifai, getFactifaiSessionResult, listFactifaiSessions — is a fair guide to whether it matches your workflow. It is maintained by presidio-oss; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Caveats

  • 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.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the factifai mcp server does with a few real requests.

Available tools

ToolWhat it does
testWithFactifaiStart a test with Factifai
getFactifaiSessionResultGet test result
listFactifaiSessionsList tests

How to install the Factifai MCP server

{
	"mcpServers": {
		"factifai": {
			"command": "npx",
			"args": ["-y", "@presidio-dev/factifai-mcp-server@latest"],
			"env": {
				"MODEL_PROVIDER": "bedrock|openai",
				"OPENAI_API_KEY": "<your-openai-api-key>",
				"AWS_ACCESS_KEY_ID": "<your-aws-access-key-id>",
				"AWS_SECRET_ACCESS_KEY": "<your-aws-secret-access-key>",
				"AWS_DEFAULT_REGION": "<your-aws-region>"
			}
		}
	}
}

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

Configuration

  • Node.js >= 16.0.0 - Hai Build, Cursor, Windsurf, Claude Desktop or any MCP Client
VariableDescriptionRequired
MODEL_PROVIDERConfiguration value read at startup.Optional
OPENAI_API_KEYCredential the server authenticates with.Yes
AWS_ACCESS_KEY_IDCredential the server authenticates with.Yes
AWS_SECRET_ACCESS_KEYCredential the server authenticates with.Yes
AWS_DEFAULT_REGIONConfiguration value read at startup.Optional

Example prompts to try

  • Use Factifai to testWithFactifai.
  • Use Factifai to getFactifaiSessionResult.
  • Use Factifai to listFactifaiSessions.

Frequently asked questions

It connects Factifai to MCP-compatible AI assistants such as Claude and Cursor, exposing 3 tools (testWithFactifai, getFactifaiSessionResult, listFactifaiSessions) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Factifai directly.