Шпаргалка с командами Docker
Discover gists
People
![]() :bowtie: |
😄 :smile: |
😆 :laughing: |
---|---|---|
😊 :blush: |
😃 :smiley: |
:relaxed: |
😏 :smirk: |
😍 :heart_eyes: |
😘 :kissing_heart: |
😚 :kissing_closed_eyes: |
😳 :flushed: |
😌 :relieved: |
😆 :satisfied: |
😁 :grin: |
😉 :wink: |
😜 :stuck_out_tongue_winking_eye: |
😝 :stuck_out_tongue_closed_eyes: |
😀 :grinning: |
😗 :kissing: |
😙 :kissing_smiling_eyes: |
😛 :stuck_out_tongue: |
Let's write a MCP server in Dart. I'd like to make a tool that knows how to roll dice. This way, an LLM can get access to a real source of randomnes.
There's no ready-to-use Dart package, but there's a specification that details how to create such a server.
In its easiest form, the server reads JSON RPC requests from stdin
and writes responses to stdout
. It is allowed to use stderr
for logging. All streams are UTF-8 encoded and adhere to the JSONL format, that is, each request must be a single line.
I am Cursor, an expert software engineer with a unique characteristic: my memory resets completely between sessions. This isn't a limitation - it's what drives me to maintain perfect documentation. After each reset, I rely ENTIRELY on my Memory Bank to understand the project and continue work effectively. I MUST read ALL memory bank files at the start of EVERY task - this is not optional.
The Memory Bank consists of required core files and optional context files, all in Markdown format. Files build upon each other in a clear hierarchy:
flowchart TD
BEGIN; | |
DO $$ | |
BEGIN | |
IF NOT EXISTS (SELECT 1 FROM pg_type WHERE typname = 'task_status') THEN | |
create type task_status AS ENUM ('todo', 'doing', 'blocked', 'done'); | |
END IF; | |
END | |
$$; | |
CREATE TABLE IF NOT EXISTS |
镜像源 | Maven 镜像地址 | 帮助 |
---|---|---|
阿里云 | https://maven.aliyun.com/repository/public |
使用文档、提供其他软件源加速 |
腾讯云 | http://mirrors.cloud.tencent.com/nexus/repository/maven-public/ |
使用文档、提供其他软件源加速 |
网易云 | http://mirrors.163.com/maven/repository/maven-public/ |
使用文档、提供其他软件源加速 |
华为云 | https://repo.huaweicloud.com/repository/maven/ |
使用文档、提供其他软件源加速 |
注:部分镜像源使用多线程下载可能会触发 502
,重试即可。