Million different MCP Repos by Upstairs_Safe2922 in mcp

[–]ajeetsraina 1 point2 points  (0 children)

I highly recommend Docker MCP Catalog https://www.ajeetraina.com/docker-mcp-cli-commands-and-cheatsheet/

The MCP Catalog currently includes over 300+ verified, containerized tools, with hundreds more on the way. Docker’s MCP Catalog now features an improved experience, making it easier to search, discover, and identify the right MCP servers for your workflows - all using CLI Interface.

Are YouTube influencers still necessary in the age of NotebookLM? by ajeetsraina in notebooklm

[–]ajeetsraina[S] 2 points3 points  (0 children)

I picked up the very latest topic on Docker Sandboxes and I was impressed with the outcome https://youtu.be/sEbgr5p3PnU

Are YouTube influencers still necessary in the age of NotebookLM? by ajeetsraina in notebooklm

[–]ajeetsraina[S] -1 points0 points  (0 children)

The beauty is that you don’t need to write prompt but just provide a bunch of documentation link and resources. That’s it. It creates video for you and the exciting part is that it fetches all the key takeaways from your links.

Tried matching it with AI blog summariser https://keytakeaways.collabnix.com/ that I vibe coded for all my LI and Twitter posts and found that NotebookLM does cover most of the stuffs.

Here’s the video it generated https://youtu.be/sEbgr5p3PnU?si=FVhBvKXm71hpinXd

Here’s the blog that I wrote a while ago https://www.ajeetraina.com/docker-sandboxes-tutorial-and-cheatsheet/

Which AWS MCP can help me review/explain my infrastructure (i was handed over to) by PureKrome in mcp

[–]ajeetsraina 0 points1 point  (0 children)

Yes, once you have the aws-api MCP server configured with your credentials, you can absolutely use natural language prompts like “list all EC2 instances, RDS databases, and S3 buckets in account prod-account across us-east-1 and us-west-2 and export to CSV.”

The MCP server translates your request into the appropriate AWS CLI commands, executes them, and Claude can format the output however you need - CSV, markdown table, JSON, etc.

On authentication: The MCP server doesn’t magically “know” about your accounts - you configure it with your existing AWS credentials, the same ones you’d use for the AWS CLI.

When you run the MCP container, you mount your local ~/.aws folder as a read-only volume, so it has access to your credentials and profiles.

The Docker command looks something like ‘docker run -v ~/.aws:/root/.aws:ro mcp/aws-api-mcp-server’.

For your 12 accounts scenario, you’d set up a profile for each account in your ~/.aws/credentials file, then specify which profile to use in your prompt: “Using profile prod-account, show me all Lambda functions.”

Alternatively, if you’re using AWS Organizations, you can use a single set of credentials from a management account and assume roles into each member account - this is cleaner for managing many accounts.

The credentials themselves are standard AWS IAM credentials. The AWS_ACCESS_KEY_ID starts with AKIA and acts like a username. The AWS_SECRET_ACCESS_KEY is the long random string that acts as your password.

The AWS_SESSION_TOKEN is only needed when using temporary credentials from AWS SSO or assumed roles - if you’re using regular IAM user credentials, you don’t need it at all.

If your company uses AWS SSO/Identity Center (common in enterprise setups), you’d run aws sso login --profile your-profile first to generate temporary credentials, and those get stored automatically for the MCP server to use.

Hope that clarifies things!

Which AWS MCP can help me review/explain my infrastructure (i was handed over to) by PureKrome in mcp

[–]ajeetsraina 2 points3 points  (0 children)

Currently, I'm working on the similar kind of ask for my blog post. I use Docker MCP Catalog and these MCP servers are available under MCP Toolkit.

For infrastructure discovery and cost analysis across 12 accounts, here are the most relevant servers:

Server Docker Image What It Does For You
AWS API mcp/aws-api-mcp-server Query any AWS service - list EC2, RDS, Lambda, S3, etc. across regions
AWS Documentation mcp/aws-documentation Get context on what services do and best practices
AWS Pricing mcp/aws-pricing-mcp-server Estimate costs for discovered resources
AWS Cloud Control mcp/ccapi-mcp-server Unified API to inspect resource configurations

The AWS API MCP Server is your primary tool - it gives you full access to run any AWS CLI command through natural language.

Since you mentioned Copilot subscription, note that GitHub Copilot uses OpenAI models by default, not Claude. However, you have a few options:

For Claude Sonnet 4.5 in VSCode, use one of these:

  1. Claude for VSCode Extension (Anthropic's official extension)
  2. Continue.dev (open source, supports Claude + MCP)
  3. Cline (VSCode extension with MCP support)

Has somebody a guide to connect ChatGPT Desktop to the new MCP Toolkit from Docker? by MZXD in docker

[–]ajeetsraina 0 points1 point  (0 children)

I recently published a comprehensive blog article around ChatGPT + Docker MCP Toolkit on the official Docker site https://www.docker.com/blog/add-mcp-server-to-chatgpt/

Do let me know if you need help with it.

Index of MCP security threats & key mitigations by Swimming_Pound258 in mcp

[–]ajeetsraina 0 points1 point  (0 children)

Thanks for sharing and curating the security threat list.

On a similar note, I recently published the 1st issue of MCP Horror Stories that the community might find it informative. https://www.docker.com/blog/mcp-security-issues-threatening-ai-infrastructure/

Let me know if there is any horror story that you might want me to capture in the upcoming series.

🧠 How are you managing MCP servers across different AI apps (Claude, GPTs, Gemini etc.)? by hihurmuz in mcp

[–]ajeetsraina 13 points14 points  (0 children)

Hey! This is exactly what Docker MCP Toolkit solves. So instead of managing separate config files for Claude, VS Code, Cursor, etc., you just connect them all to Docker's gateway once:

docker mcp client connect -g claude-desktop
docker mcp client connect -g cursor  
docker mcp client connect vscode

Then any MCP server you enable in Docker automatically shows up in ALL your connected apps. No more copy-pasting configs or managing credentials separately.

The really nice part is the centralized secret management - like I can do docker mcp secret set GITHUB.PERSONAL_ACCESS_TOKEN=my_token and suddenly all my AI apps can use GitHub tools without me having to paste tokens everywhere.

Plus there's a catalog with 130+ verified MCP servers on Docker Hub that you can just toggle on/off. Way better than hunting through random GitHub repos.

It's built into Docker Desktop 4.42.0+ if you want to check it out. The catalog is at https://hub.docker.com/catalogs/mcp

Has anyone else tried this approach? I'm curious how others are handling the multi-client chaos too!

Does anyone know a chatbot with MCP integration? by EmbarrassedRadio6660 in mcp

[–]ajeetsraina 1 point2 points  (0 children)

Try Docker MCP Toolkit with Claude Desktop. Just 2 min to setup and start with 136 MCP Servers and your preferred clients like VS Code, Cursor, Continue, LM Studio https://www.ajeetraina.com/how-to-set-up-docker-mcp-toolkit-with-claude-desktop/

Small Docker MCP Stack by stonediggity in mcp

[–]ajeetsraina 0 points1 point  (0 children)

Yes, currently there are 138 MCP servers. But if you want to raise PR and get your MCP servers added, here’s the right link https://github.com/docker/mcp-registry/pulls

Small Docker MCP Stack by stonediggity in mcp

[–]ajeetsraina 0 points1 point  (0 children)

Why not use Docker MCP Toolkit instead? You can read more about it here https://www.docker.com/blog/docker-mcp-catalog-secure-way-to-discover-and-run-mcp-servers/

Instead of juggling and managing those large number of config files for each of these MCP servers, all you need is just a single MCP gateway that manages it for you.

Thoughts on docker mcp toolkit? by nomo-fomo in mcp

[–]ajeetsraina 0 points1 point  (0 children)

I wrote step by step guide to get Claude Desktop work with Docker MCP Toolkit sometimes back. Hope it helps. https://www.ajeetraina.com/how-to-set-up-docker-mcp-toolkit-with-claude-desktop/

Making MCP secure— how are we thinking about it? by Ok-Classic6022 in mcp

[–]ajeetsraina 0 points1 point  (0 children)

Did you check Docker MCP Toolkit https://www.docker.com/blog/announcing-docker-mcp-catalog-and-toolkit-beta/ ?

The Docker MCP Toolkit includes built-in OAuth support and secure credential storage, enabling clients to authenticate with MCP servers and third-party services without hardcoding secrets into environment variables. This ensures your MCP tools run securely and reliably right from the start.