Code Snippets Library
v1.0.0Collection of reusable code snippets and utilities
codesnippetsutilitiesdeveloper-tools
Server Information
- Server ID
- snippets
- Author
- bookchaowalit
- Available Tools
- 4 tools
About
A library of code snippets organized by language and category. Includes JavaScript, Python, TypeScript, and more. ## Features - Browse snippets by language - Search by keyword or tag - Copy code with one click - Category filtering
Available Tools
snippets_get_snippets
Get all code snippets
Input Schema
{
"type": "object",
"properties": {
"language": {
"type": "string"
}
}
}snippets_search_snippets
Search code snippets
Input Schema
{
"type": "object",
"properties": {
"query": {
"type": "string"
}
}
}snippets_get_snippet
Get a specific snippet
Input Schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
}
}
}snippets_get_categories
Get snippet categories
Input Schema
{
"type": "object",
"properties": {}
}Usage Example
Connect to this MCP server using the Model Context Protocol:
{
"mcpServers": {
"snippets": {
"command": "node",
"args": ["path/to/server.js"],
"env": {
"SERVER_URL": "https://bookchaowalit-snippets-frontend.vercel.app"
}
}
}
}