OSS-first docs

These docs teach the open system first: contracts, generated surfaces, runtimes, governance, and incremental adoption. Studio shows up as the operating layer on top, not as the source of truth.

contractspec.mcp

Model Context Protocol server for AI agent integration

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.mcp
  • Tags: mcp, ai-agents, tooling
  • File: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/bundles/library/src/features/mcp.feature.ts
  • field.key.label
    contractspec.mcp
    field.version.label
    1.0.0
    field.type.label
    feature
    field.title.label
    contractspec.mcp
    field.description.label

    Model Context Protocol server for AI agent integration

  • Type: feature
  • Version: 1.0.0
  • Stability: beta
  • Owners: @platform.mcp
  • Tags: mcp, ai-agents, tooling
  • File: /Users/tboutron/Documents/clients/lssm/monorepo-lssm/packages/contractspec/packages/bundles/library/src/features/mcp.feature.ts
  • field.tags.label
    mcp,ai-agents,tooling
    field.owners.label
    @platform.mcp
    field.stability.label
    beta

    Model Context Protocol server for AI agent integration

    Source Definition

    import type { FeatureModuleSpec } from '@lssm-tech/lib.contracts-spec/features';
    
    /**
     * MCP (Model Context Protocol) integration feature for ContractSpec.
     * Enables AI agent integration through MCP tools, resources, and prompts.
     */
    export const MCPFeature: FeatureModuleSpec = {
      meta: {
        key: 'contractspec.mcp',
        version: '1.0.0',
        title: 'MCP Integration',
        description: 'Model Context Protocol server for AI agent integration',
        domain: 'platform',
        owners: ['@platform.mcp'],
        tags: ['mcp', 'ai-agents', 'tooling'],
        stability: 'beta',
      },
      operations: [
        { key: 'mcp.tool.register', version: '1.0.0' },
        { key: 'mcp.resource.register', version: '1.0.0' },
        { key: 'mcp.prompt.register', version: '1.0.0' },
      ],
      events: [
        { key: 'mcp.tool_invoked', version: '1.0.0' },
        { key: 'mcp.resource_accessed', version: '1.0.0' },
      ],
      presentations: [],
      capabilities: {
        provides: [{ key: 'contracts.mcp', version: '1.0.0' }],
        requires: [{ key: 'contracts.operations', version: '1.0.0' }],
      },
    };