addedInput schema / $defs / CapitalizationDraft
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "authorized_common_shares": {
+ "minimum": 0,
+ "title": "Authorized Common Shares",
+ "type": "integer"
+ },
+ "common_par_value": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$",
+ "type": "string"
+ }
+ ],
+ "ge": 0,
+ "title": "Common Par Value"
+ },
+ "founder_common_share_allocations": {
+ "additionalProperties": {
+ "minimum": 0,
+ "type": "integer"
+ },
+ "propertyNames": {
+ "format": "uuid"
+ },
+ "title": "Founder Common Share Allocations",
+ "type": "object"
+ },
+ "option_pool_shares": {
+ "minimum": 0,
+ "title": "Option Pool Shares",
+ "type": "integer"
+ }
+ },
+ "required": [
+ "authorized_common_shares",
+ "common_par_value",
+ "option_pool_shares",
+ "founder_common_share_allocations"
+ ],
+ "title": "CapitalizationDraft",
+ "type": "object"
+}
addedInput schema / $defs / FilingPreferences
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "certified_copy": {
+ "title": "Certified Copy",
+ "type": "boolean"
+ },
+ "expedited": {
+ "title": "Expedited",
+ "type": "boolean"
+ },
+ "registered_agent_selection": {
+ "enum": [
+ "sparklaunch",
+ "existing"
+ ],
+ "title": "Registered Agent Selection",
+ "type": "string"
+ }
+ },
+ "required": [
+ "registered_agent_selection",
+ "expedited",
+ "certified_copy"
+ ],
+ "title": "FilingPreferences",
+ "type": "object"
+}
addedInput schema / $defs / GovernanceAssignments
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "incorporator_participant_key": {
+ "format": "uuid",
+ "title": "Incorporator Participant Key",
+ "type": "string"
+ },
+ "initial_director_participant_keys": {
+ "items": {
+ "format": "uuid",
+ "type": "string"
+ },
+ "title": "Initial Director Participant Keys",
+ "type": "array"
+ },
+ "officers": {
+ "additionalProperties": {
+ "format": "uuid",
+ "type": "string"
+ },
+ "title": "Officers",
+ "type": "object"
+ },
+ "responsible_party_participant_key": {
+ "format": "uuid",
+ "title": "Responsible Party Participant Key",
+ "type": "string"
+ },
+ "signer_participant_key": {
+ "format": "uuid",
+ "title": "Signer Participant Key",
+ "type": "string"
+ }
+ },
+ "required": [
+ "incorporator_participant_key",
+ "initial_director_participant_keys",
+ "officers",
+ "signer_participant_key",
+ "responsible_party_participant_key"
+ ],
+ "title": "GovernanceAssignments",
+ "type": "object"
+}
changedInput schema / $defs / MCPFileReference / description
Previous value: -"Bounded file reference supplied by a ChatGPT host file parameter."New value: +"Bounded file reference supplied by an approved host file parameter."
addedInput schema / $defs / MCPIncorporationDraftInput
Added value: +{
+ "additionalProperties": false,
+ "description": "Closed ordinary-data draft that cannot carry physical addresses.",
+ "properties": {
+ "capitalization": {
+ "$ref": "#/$defs/CapitalizationDraft"
+ },
+ "company_contact_email": {
+ "format": "email",
+ "title": "Company Contact Email",
+ "type": "string"
+ },
+ "company_name": {
+ "maxLength": 255,
+ "minLength": 1,
+ "title": "Company Name",
+ "type": "string"
+ },
+ "company_phone": {
+ "anyOf": [
+ {
+ "maxLength": 64,
+ "type": "string"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null,
+ "title": "Company Phone"
+ },
+ "entity_type": {
+ "const": "delaware_c_corporation",
+ "default": "delaware_c_corporation",
+ "title": "Entity Type",
+ "type": "string"
+ },
+ "filing_preferences": {
+ "$ref": "#/$defs/FilingPreferences"
+ },
+ "founders": {
+ "items": {
+ "$ref": "#/$defs/MCPIncorporationFounderDraft"
+ },
+ "maxItems": 100,
+ "minItems": 1,
+ "title": "Founders",
+ "type": "array"
+ },
+ "governance": {
+ "$ref": "#/$defs/GovernanceAssignments"
+ },
+ "jurisdiction": {
+ "const": "DE",
+ "default": "DE",
+ "title": "Jurisdiction",
+ "type": "string"
+ },
+ "participants": {
+ "items": {
+ "$ref": "#/$defs/MCPIncorporationParticipantDraft"
+ },
+ "maxItems": 100,
+ "title": "Participants",
+ "type": "array"
+ }
+ },
+ "required": [
+ "company_name",
+ "company_contact_email",
+ "founders",
+ "governance",
+ "capitalization",
+ "filing_preferences"
+ ],
+ "title": "MCPIncorporationDraftInput",
+ "type": "object"
+}
addedInput schema / $defs / MCPIncorporationFounderDraft
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "common_shares": {
+ "minimum": 0,
+ "title": "Common Shares",
+ "type": "integer"
+ },
+ "email": {
+ "format": "email",
+ "title": "Email",
+ "type": "string"
+ },
+ "equity_percent": {
+ "anyOf": [
+ {
+ "type": "number"
+ },
+ {
+ "pattern": "^(?!^[-+.]*$)[+-]?0*\\d*\\.?\\d*$",
+ "type": "string"
+ }
+ ],
+ "ge": 0,
+ "title": "Equity Percent"
+ },
+ "legal_name": {
+ "maxLength": 200,
+ "minLength": 1,
+ "title": "Legal Name",
+ "type": "string"
+ },
+ "participant_key": {
+ "format": "uuid",
+ "title": "Participant Key",
+ "type": "string"
+ },
+ "roles": {
+ "items": {
+ "maxLength": 64,
+ "minLength": 1,
+ "type": "string"
+ },
+ "maxItems": 16,
+ "minItems": 1,
+ "title": "Roles",
+ "type": "array"
+ }
+ },
+ "required": [
+ "participant_key",
+ "legal_name",
+ "email",
+ "roles",
+ "equity_percent",
+ "common_shares"
+ ],
+ "title": "MCPIncorporationFounderDraft",
+ "type": "object"
+}
addedInput schema / $defs / MCPIncorporationParticipantDraft
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "email": {
+ "format": "email",
+ "title": "Email",
+ "type": "string"
+ },
+ "legal_name": {
+ "maxLength": 200,
+ "minLength": 1,
+ "title": "Legal Name",
+ "type": "string"
+ },
+ "participant_key": {
+ "format": "uuid",
+ "title": "Participant Key",
+ "type": "string"
+ },
+ "roles": {
+ "items": {
+ "enum": [
+ "incorporator",
+ "director",
+ "officer",
+ "signer",
+ "responsible_party"
+ ],
+ "type": "string"
+ },
+ "maxItems": 8,
+ "minItems": 1,
+ "title": "Roles",
+ "type": "array"
+ }
+ },
+ "required": [
+ "participant_key",
+ "legal_name",
+ "email",
+ "roles"
+ ],
+ "title": "MCPIncorporationParticipantDraft",
+ "type": "object"
+}
addedInput schema / oneOf
Added value: +[
+ {
+ "not": {
+ "required": [
+ "draft"
+ ]
+ },
+ "required": [
+ "draft_file"
+ ]
+ },
+ {
+ "not": {
+ "required": [
+ "draft_file"
+ ]
+ },
+ "required": [
+ "draft"
+ ]
+ }
+]
addedInput schema / properties / draft
Added value: +{
+ "anyOf": [
+ {
+ "$ref": "#/$defs/MCPIncorporationDraftInput"
+ },
+ {
+ "type": "null"
+ }
+ ],
+ "default": null
+}
removedInput schema / properties / draft_file / $ref
Removed value: -"#/$defs/MCPFileReference"
addedInput schema / properties / draft_file / anyOf
Added value: +[
+ {
+ "$ref": "#/$defs/MCPFileReference"
+ },
+ {
+ "type": "null"
+ }
+]
addedInput schema / properties / draft_file / default
Added value: +null
changedInput schema / required
Previous value: -[
- "project_id",
- "case_id",
- "expected_version",
- "draft_file",
- "idempotency_key"
-]New value: +[
+ "project_id",
+ "case_id",
+ "expected_version",
+ "idempotency_key"
+]