📦
And Canvas
No description available
0 installs
Trust: 30 — Low
Content
Ask AI about And Canvas
Powered by Claude · Grounded in docs
I know everything about And Canvas. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
LLM to Canvas concept
A simple example to create MCP Server (modelcontextprotocol.io)
This example

##Â How MCP Servers Work
graph TD
User -->|Prompt| LLM["LLM (App Host)"]
LLM -->|Response| User
LLM -->|MCP| Server
Server --> KnowledgeA
Server --> ToolsA
subgraph Server A["Server"]
KnowledgeA[Knowledge]
ToolsA[Tools]
end
BibliografĂa: How MCP Servers Work
To install dependencies:
bun install
To run:
bun server
bun mcp:start
To dev:
bun mcp:dev
This project was created using bun init in bun v1.2.13. Bun is a fast all-in-one JavaScript runtime.
You can test it with ollama and mcphost
// nvim ~/.mcp.json
{
"mcpServers": {
"mcp-and-canvas": {
"command": "node",
"args": ["../../mcp-and-canvas/server/index.js"],
"env": {
"SERVER_URL": "http://localhost:3000",
},
},
},
}
ollama server
mcphost -m ollama:qwen3:8b
