MCPcopy Create free account
hub / github.com/SkyworkAI/DeepResearchAgent / CreateTableRequest

Class CreateTableRequest

src/environment/database/types.py:28–33  ·  view source on GitHub ↗

Request for creating a table.

Source from the content-addressed store, hash-verified

26
27
28class CreateTableRequest(BaseModel):
29 """Request for creating a table."""
30 table_name: str = Field(description="Name of the table to create")
31 columns: List[Dict[str, Any]] = Field(description="Table column definitions")
32 primary_key: Optional[str] = Field(default=None, description="Primary key column name")
33 foreign_keys: Optional[List[Dict[str, Any]]] = Field(default=None, description="Foreign key constraints")
34
35
36class InsertRequest(BaseModel):

Callers 10

_create_sample_tablesMethod · 0.90
create_tableMethod · 0.90
ensure_table_existsMethod · 0.90
ensure_table_existsMethod · 0.90
ensure_table_existsMethod · 0.90
ensure_table_existsMethod · 0.90
ensure_table_existsMethod · 0.90
ensure_table_existsMethod · 0.90
ensure_table_existsMethod · 0.90
ensure_table_existsMethod · 0.90

Calls

no outgoing calls

Tested by 1

ensure_table_existsMethod · 0.72