Soma is an MCP server published as the npm package soma-rmcp at version 0.4.7 by ai.dinglebear. It functions as a drop-in RMCP runtime, meaning it handles the runtime layer for MCP tools, prompts, resources, and agent capabilities that are backed by external providers rather than implemented inline.
The server runs over stdio transport and is configured entirely through environment variables. SOMA_BIN points to the Soma binary, SOMA_HOME sets the working home directory, SOMA_PROVIDER_DIR specifies where provider definitions are loaded from, SOMA_API_URL and SOMA_API_KEY configure the upstream provider API endpoint and authentication, and RUST_LOG controls logging verbosity — suggesting the runtime itself is implemented in Rust despite being distributed via npm.
Because no specific tools are registered in this record, the concrete capabilities an agent gains depend entirely on the providers configured at runtime via SOMA_PROVIDER_DIR and the connected API. Soma acts as the hosting shell rather than a fixed-function server: it loads and exposes whatever tools, prompts, and resources the configured providers define. This makes it suitable when you need a consistent runtime container for dynamically-defined MCP capabilities rather than a hard-coded set of integrations.
Soma is not the right choice when you need a server with a known, fixed set of tools out of the box, when your environment cannot support stdio transport, or when you have no provider configuration to supply.