← Tools Reference

LangSmith

LangSmith integration (AI, Developer Tools). Imported from open-connector.

API key9 toolshttps://api.smith.langchain.com
GET
langsmith_list_workspaces
List LangSmith workspaces visible to the connected API key.

/api/v1/workspaces

2 parameters
ParamTypeRequiredDescription
include_deletedbooleanoptionalWhether to include deleted workspaces in the response.
data_plane_idstringoptionalThe LangSmith UUID.
GET
langsmith_list_projects
List LangSmith tracing projects with optional name and pagination filters.

/api/v1/sessions

6 parameters
ParamTypeRequiredDescription
namestringoptionalA non-empty project name.
name_containsstringoptionalA non-empty project name fragment.
include_statsbooleanoptionalWhether LangSmith should include project statistics.
sort_by_descbooleanoptionalWhether LangSmith should sort descending.
offsetintegeroptionalThe number of records to skip.
limitintegeroptionalThe maximum number of records to return.
GET
langsmith_get_project
Get a LangSmith tracing project by ID.

/api/v1/sessions/{projectId}

2 parameters
ParamTypeRequiredDescription
projectIdstringrequiredThe LangSmith UUID.
include_statsbooleanoptionalWhether LangSmith should include project statistics.
POST
langsmith_create_project
Create a LangSmith tracing project.

/api/v1/sessions

8 parameters
ParamTypeRequiredDescription
namestringrequiredThe project name.
descriptionstringoptionalThe project description.
start_timestringoptionalThe project start timestamp.
end_timestringoptionalThe project end timestamp.
extraobjectoptionalA JSON object forwarded to or returned by LangSmith.
default_dataset_idstringoptionalThe LangSmith UUID.
reference_dataset_idstringoptionalThe LangSmith UUID.
upsertbooleanoptionalWhether LangSmith should upsert a project with the same name.
GET
langsmith_list_datasets
List LangSmith datasets with optional name, type, and pagination filters.

/api/v1/datasets

5 parameters
ParamTypeRequiredDescription
namestringoptionalA non-empty dataset name.
name_containsstringoptionalA non-empty dataset name fragment.
data_typestringoptionalThe LangSmith dataset data type.
offsetintegeroptionalThe number of records to skip.
limitintegeroptionalThe maximum number of records to return.
GET
langsmith_get_dataset
Get a LangSmith dataset by ID.

/api/v1/datasets/{datasetId}

1 parameter
ParamTypeRequiredDescription
datasetIdstringrequiredThe LangSmith UUID.
POST
langsmith_create_dataset
Create a LangSmith dataset.

/api/v1/datasets

7 parameters
ParamTypeRequiredDescription
namestringrequiredThe dataset name.
descriptionstringoptionalThe dataset description.
data_typestringoptionalThe LangSmith dataset data type.
inputs_schema_definitionobjectoptionalA JSON object forwarded to or returned by LangSmith.
outputs_schema_definitionobjectoptionalA JSON object forwarded to or returned by LangSmith.
metadataobjectoptionalProvider-defined metadata forwarded to LangSmith.
externally_managedbooleanoptionalWhether the dataset is externally managed.
GET
langsmith_list_examples
List LangSmith dataset examples with optional dataset and text filters.

/api/v1/examples

5 parameters
ParamTypeRequiredDescription
datasetIdstringoptionalThe LangSmith UUID.
full_text_containsarrayoptionalText fragments that LangSmith should search for.
as_ofstringoptionalThe dataset version timestamp or latest.
offsetintegeroptionalThe number of records to skip.
limitintegeroptionalThe maximum number of records to return.
GET
langsmith_get_example
Get a LangSmith dataset example by ID.

/api/v1/examples/{exampleId}

3 parameters
ParamTypeRequiredDescription
exampleIdstringrequiredThe LangSmith UUID.
datasetIdstringoptionalThe LangSmith UUID.
as_ofstringoptionalThe dataset version timestamp or latest.