list_snippets
Filter and retrieve code snippets by language or tags from a centralized server, streamlining access to reusable code for efficient development.
Instructions
List snippets (can filter by language or tags)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
language | No | Filter by specific language | |
tag | No | Filter by specific tag |
Input Schema (JSON Schema)
{
"properties": {
"language": {
"description": "Filter by specific language",
"type": "string"
},
"tag": {
"description": "Filter by specific tag",
"type": "string"
}
},
"type": "object"
}