Loading video...

Video Failed to Load

Go Home

AI Engineers gonna love this MCP server! KitOps MCP serve eliminates the "it works on my machine" problem by packaging AI/ML projects (models, datasets, code, config) into a shareable, deployable ModelKit. Sharing projects is as easy as sharing zip files! 100% open-source.

87,067 views โ€ข 1 year ago โ€ขvia X (Twitter)

11 Comments

Akshay ๐Ÿš€'s profile picture
Akshay ๐Ÿš€1 year ago

ModelKits can be centrally managed and deployed using a single Docker command here: And here's @Kit_Ops official GitHub repo: (don't forget to star ๐ŸŒŸ)

Akshay ๐Ÿš€'s profile picture
Akshay ๐Ÿš€1 year ago

ModelKits are Docker and more โ€” hereโ€™s what stood out to me: - Selectively unpack kits โ€” skip pulling what you donโ€™t need - Doubles as your private model registry - One-command deployment Overview of our MCP server:

Akshay ๐Ÿš€'s profile picture
Akshay ๐Ÿš€1 year ago

If you found it insightful, reshare with your network. Find me โ†’ @akshay_pachaar โœ”๏ธ For more insights and tutorials on LLMs, AI Agents, and Machine Learning!

Sumanth's profile picture
Sumanth1 year ago

Amazing tutorial, Akshay. Can't wait to try KitOps!

Akshay ๐Ÿš€'s profile picture
Akshay ๐Ÿš€1 year ago

Glad you found it helpful!

Mr. ร…nand (Studio1HQ)'s profile picture
Mr. ร…nand (Studio1HQ)1 year ago

Kitops is very useful for teams involved in ml deployments! Thanks for sharing MCP, Akshay!

Akshay ๐Ÿš€'s profile picture
Akshay ๐Ÿš€1 year ago

Absolutely! ๐Ÿ’ฏ Glad you liked it Anand!

Jozu's profile picture
Jozu1 year ago

Thanks for sharing this amazing Tutorial and covering @Kit_Ops and Jozu!

Akshay ๐Ÿš€'s profile picture
Akshay ๐Ÿš€1 year ago

@Kit_Ops Incredible work, team! ๐Ÿ™Œ Loved working on this one. I'll be using KitOps going forward

Avi Chawla's profile picture
Avi Chawla1 year ago

I have used DVC + Git and it is indeed a pain to manage multiple version control systems. This will surely be helpful. Can you share the code for the MCP server?

Akshay ๐Ÿš€'s profile picture
Akshay ๐Ÿš€1 year ago

Avi, you highlighted the exact pain point here! Here's the code for MCP server:

Related Videos

New course: MCP: Build Rich-Context AI Apps with Anthropic. Learn to build AI apps that access tools, data, and prompts using the Model Context Protocol in this short course, created in partnership with Anthropic Anthropic and taught by Elie Schoppik Elie Schoppik, its Head of Technical Education. Connecting AI applications to external systems that bring rich context to LLM-based applications has often meant writing custom integrations for each use case. MCP is an open protocol that standardizes how LLMs access tools, data, and prompts from external sources, and simplifies how you provide context to your LLM-based applications. For example, you can provide context via third-party tools that let your LLM make API calls to search the web, access data from local docs, retrieve code from a GitHub repo, and so on. MCP, developed by Anthropic, is based on a client-server architecture that defines the communication details between an MCP client, hosted inside the AI application, and an MCP server that exposes tools, resources, and prompt templates. The server can be a subprocess launched by the client that runs locally or an independent process running remotely. In this hands-on course, you'll learn the core architecture behind MCP. Youโ€™ll create an MCP-compatible chatbot, build and deploy an MCP server, and connect the chatbot to your MCP server and other open-source servers. Hereโ€™s what youโ€™ll do: - Understand why MCP makes AI development less fragmented and standardizes connections between AI applications and external data sources - Learn the core components of the client-server architecture of MCP and the underlying communication mechanism - Build a chatbot with custom tools for searching academic papers, and transform it into an MCP-compatible application - Build a local MCP server that exposes tools, resources, and prompt templates using FastMCP, and test it using MCP Inspector - Create an MCP client inside your chatbot to dynamically connect to your server - Connect your chatbot to reference servers built by Anthropicโ€™s MCP team, such as filesystem, which implements filesystem operations, and fetch, which extracts contents from the web as markdown - Configure Claude Desktop to connect to your server and others, and explore how it abstracts away the low-level logic of MCP clients - Deploy your MCP server remotely and test it with the Inspector or other MCP-compatible applications - Learn about the roadmap for future MCP development, such as multi-agent architecture, MCP registry API, server discovery, authorization, and authentication MCP is an exciting and important technology that lets you build rich-context AI applications that connect to a growing ecosystem of MCP servers, with minimal integration work. Please sign up here!

Andrew Ng

142,010 views โ€ข 1 year ago

Big moment for Postgres! AI coding tools have been surprisingly bad at writing Postgres code. Not because the models are dumb, but because of how they learned SQL in the first place. LLMs are trained on the internet, which is full of outdated Stack Overflow answers and quick-fix tutorials. So when you ask an AI to generate a schema, it gives you something that technically runs but misses decades of Postgres evolution, like: - No GENERATED ALWAYS AS IDENTITY (added in PG10) - No expression or partial indexes - No NULLS NOT DISTINCT (PG15) - Missing CHECK constraints and proper foreign keys - Generic naming that tells you nothing But this is actually a solvable problem. You can teach AI tools to write better Postgres by giving them access to the right documentation at inference time. This exact solution is actually implemented in the newly released pg-aiguide by Tiger Data - Creators of TimescaleDB, which is an open-source MCP server that provides coding tools access to 35 years of Postgres expertise. In a gist, the MCP server enables: - Semantic search over the official PostgreSQL manual (version-aware, so it knows PG14 vs PG17 differences) - Curated skills with opinionated best practices for schema design, indexing, and constraints. I ran an experiment with Claude Code to see how well this works, and worked with the team to put this together. Prompt: "Generate a schema for an e-commerce site twice, one with the MCP server disabled, one with it enabled. Finally, run an assessment to compare the generated schemas." The run with the MCP server led to: - 420% more indexes (including partial and expression indexes) - 235% more constraints - 60% more tables (proper normalization) - 11 automation functions and triggers - Modern PG17 patterns throughout The MCP-assisted schema had proper data integrity, performance optimizations baked in, and followed naming conventions that actually make sense in production. pg-aiguide works with Claude Code, Cursor, VS Code, and any MCP-compatible tool. It's free and fully open source. I have shared the repo in the replies!

Avi Chawla

186,931 views โ€ข 7 months ago

๐Ÿšจ AI coding agents hallucinate because they can't actually read your codebase. This MCP server fixes that. It's called Context+ and it gives AI 99% accuracy on large-scale engineering projects by building a real semantic map of your code before touching a single line. Here's what makes it different from every other MCP tool: โ†’ Tree-sitter AST parsing across 43 file extensions. Not grep. Not regex. Actual syntax trees. โ†’ Spectral Clustering that groups semantically related files into labeled clusters. Your AI finally understands what belongs together. โ†’ Obsidian-style wikilinks that map features to code files. Navigate entire codebases like a knowledge graph. โ†’ Blast radius tracing. Before any change, it shows every file and line where a symbol is imported or used. No more orphaned references. โ†’ Shadow restore points. Every AI-proposed commit creates a restore snapshot. One command to undo any change without touching git history. โ†’ Semantic search by meaning. Ask what something does. Not what it's called. The `propose_commit` tool is the wild part. It validates changes against strict rules, creates a shadow restore point, and only then writes to disk. AI can't just freestyle your production code. Works with Claude Code, Cursor, VS Code, and Windsurf. One line to install with bunx or npx. This is what responsible AI coding infrastructure actually looks like. 100% Opensource. Link in comments.

Ihtesham Ali

31,051 views โ€ข 4 months ago