Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions infra/experimental/mcp/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# OSS-Fuzz MCP

This is an experimental implementation of an MCP server that enables use of
OSS-Fuzz tools. You can use it to solve various common OSS-Fuzz tasks.

At this stage, this is purely experimental code.


## Threat model for running

This is experimental code and has an open threat model. By design, the MCP server
executes untrusted code. As such, when running this tool you
should assume you will be running untrusted code on your machine. You should
only run this in a trusted environment and on a trusted network. In practice,
this means you must run this in a heavily sandboxed environment, and from a
security perspective if you run this tool you will run untrusted code in
your environment.

This code does not run in OSS-Fuzz production services and is not part of the
tooling that runs our continuous fuzzing of open source projects.

## Running the Service

```sh
python3.12 -m venv .venv
Expand Down
Loading