Back to stacks

Creative AI Studio

by Jonathan S

Generate images with EverArt, explore HuggingFace models, and reason step-by-step.

Servers in this stack

ai
EverArt

Generate images using EverArt AI models.

@modelcontextprotocol/server-everart
ai
HuggingFace

Access HuggingFace models, datasets, and the Hub.

@huggingface/mcp-client
ai
Sequential Thinking

Dynamic and reflective problem-solving through sequential thought chains.

@modelcontextprotocol/server-sequential-thinking
productivity
Memory

Persistent key-value memory store for AI assistants.

@modelcontextprotocol/server-memory
web
Fetch

HTTP fetch tool for reading web content and APIs.

@modelcontextprotocol/server-fetch

Copy config

// .vscode/mcp.json
{
"servers": {
"everart": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-everart"
],
"type": "stdio"
},
"huggingface": {
"command": "npx",
"args": [
"-y",
"@huggingface/mcp-client"
],
"type": "stdio"
},
"sequential-thinking": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"type": "stdio"
},
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
],
"type": "stdio"
},
"fetch": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-fetch"
],
"type": "stdio"
}
}
}