There is a "server instructions" as part of initializing the connection: https://modelcontextprotocol.io/specification/2025-06-18/schema#initializeresult-instructions
It would be useful for MCPB descriptions to have a static version of this.
Proposal
{ "$schema": "../../dist/mcpb-manifest.schema.json", "manifest_version": "0.1", "name": "hello-world-node", "display_name": "Hello World MCP Server (Reference Extension)", "version": "0.1.0", "description": "A reference MCP extension demonstrating best practices and all available features", "long_description": "This is a reference implementation of a MCP Bundle (DXT). It demonstrates all available manifest features, user configuration options, and security best practices. Use this extension as a template when creating your own MCP servers. The extension includes examples of all user configuration types, proper request token verification, and comprehensive metadata fields.", "author": { "name": "Acme Inc", "email": "[email protected]", "url": "https://www.acme.void" }, "server": { "type": "node", "entry_point": "server/index.js", "mcp_config": { "command": "node" } }, "tools": [ { "name": "get_current_time", "description": "Get the current computer time in various formats" } ], "instructions": "Use this server to get the current time" // NEW FIELD -- can be long }