Source Intelligence

DisclaimerUnofficial, and not affiliated with Anthropic. Nearly all of this is read straight out of what ships: npm bundles, captured prompts, published docs. Anthropic's own notes go in verbatim, marked as theirs. The rest is my reading, and every entry carries the strings behind it. If one looks wrong, vote it down and say why.

All of v0.2.98 Home All releases olderv0.2.97 v0.2.99newer
Claude Code v0.2.98

MCP Configuration File

New support for .mcp.json configuration files in your project directory:

function saveMcpConfig(config) {
  let mcpPath = path.join(cwd(), ".mcp.json");
  writeFileSync(mcpPath, JSON.stringify(config, null, 2), { encoding: "utf8" });
}

This allows you to configure MCP servers and tools on a per-project basis.

See this entry in the whole of v0.2.98 →