Video wird geladen...

Video konnte nicht geladen werden

Zur Startseite

New releases are here: @Dart_lang 3.9 + Flutter 3.35 💙 Deep dive into accessibility upgrades, international semantics support, richer UI libraries, and smarter AI tooling with MCP Server.

16,355 Aufrufe • vor 11 Monaten •via X (Twitter)

0 Kommentare

Keine Kommentare verfügbar

Kommentare vom Original-Post werden hier angezeigt

Ähnliche 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 Aufrufe • vor 1 Jahr

SonarQube has been catching my bugs and security issues for years. The only friction was having to leave Cursor or Windsurf to view the results. Their new MCP Server fixes that by bringing verification directly into the coding environment 🔥 This is actually perfect timing 🧵 ↓ Because we write more code than ever thanks to AI, yet productivity still doesn’t keep up. Google’s 2025 DORA Report shows the tension: → AI usage +90% → Bugs +9% → Review time +91% → PR size +154% (report here: The problem isn’t generating code. It’s verifying it quickly and reliably. And this is what SonarQube's new MCP Server brings instantly: - Live scanning → trigger SonarQube checks inside Cursor, Windsurf, Claude Code… basically any MCP-compatible IDE - Immediate surfacing → security, reliability, and maintainability issues in seconds - Smooth UI handoff → jump to the dashboard only when you need the full picture - AI-native workflow → Sonar’s long-standing rule engine integrated into your daily loop Why it’s great: • Removes constant tab-switching • Faster write → check → fix cycles • Lets the IDE handle speed while SonarQube handles structure • Feels like code quality finally meets AI-native development Setup is super simple: → Enable SonarQube's MCP Server in Cursor → Add your SonarQube instance → Open your repo → Run the scan directly inside the IDE I then pointed it to a JS component I’m building in Streamlit (psst, it’s called Streamlit ChartJS ;)) → Immediate results: security flags, reliability concerns, maintainability smells, and dependency risks ✅ Then I prompted: "Show me the full breakdown." → Cursor opens the SonarQube UI with rule details, severities, fix guidance, and project-wide quality signals! Exactly on point.

Charly Wargnier

22,702 Aufrufe • vor 7 Monaten

🚨We’re excited to Introduce AI HQ — your home for building, activating, and supervising AI agents across your enterprise 🚨 We’re giving IT and business teams an end-to-end platform to co-create AI agents that don’t just assist. They act. These agents are fully integrated, grounded in company data, and built to execute high-impact business processes autonomously. New capabilities in AI HQ include: ⚡ Agent Builder (Beta): Your shared development environment where IT and business teams collaboratively build AI agents. Low-code tools make it easy to map out logic with reusable blocks, connect to systems and data, design interfaces with drag-and-drop simplicity, and more. 🏠 Writer Home: Your personalized AI workspace with 100+ prebuilt agents for every function - from support to sales to HR - ready to go and accessible via desktop, browser, or extensions. It’s your new front door to real AI-powered work. 🛡️ Observability Tools (Beta): Gain full control and visibility into every agent with enterprise-grade observability: monitor activity activity, detect anomalies, and resolve issues before they escalate. It’s how AI moves from experimental to operational. Companies like Uber Commvault and Franklin Templeton (Franklin Templeton) are already using Writer AI agents to reinvent knowledge management, accelerate revenue workflows, and deliver smarter client experiences. This isn’t hype. It’s happening now. 👀 Dive into today’s announcement:

WRITER

10,835 Aufrufe • vor 1 Jahr

If your MCP server has dozens of tools, it’s probably built wrong. You need tools that are specific and clear for each use case—but you also can’t have too many. This creates an almost impossible tradeoff that most companies don’t know how to solve. That’s why I interviewed my friend Alex Rattray (Alex Rattray), the founder and CEO of Stainless. Stainless builds APIs, SDKs, and MCP servers for companies like OpenAI and Anthropic. Alex has spent years mastering how to make software talk to software, and he came on the show to share what he knows. I had him on Every 📧’s AI & I to talk about MCP and the future of the AI-native internet. We get into: • Design MCP servers to be lean and precise. Alex’s best practices for building reliable MCP servers start with keeping the toolset small, giving each tool a precise name and description, and minimizing the inputs and outputs the model has to handle. At Stainless, they also often add a JSON filter on top to strip out unnecessary data. • Make complex APIs manageable with dynamic mode. To solve the problem of how an AI figures out which tool to use in larger APIs, Stainless switches to “dynamic mode,” where the model gets only three tools: List the endpoints, pick one and learn about it, and then execute it. • MCP servers as business copilots. At Stainless, Alex uses MCP servers to connect tools like Notion and HubSpot, so he can ask questions like, “Which customers signed up last week?” The system queries multiple databases and returns a summary that would’ve otherwise taken multiple logins and searches. • Create a “brain” for your company with Claude Code. Alex built a shared company brain at Stainless by keeping Claude Code running on his system and asking it to save useful inputs—like customer feedback and SQL queries—into GitHub. Over time, this creates a curated archive his team can query easily. • The future of MCP is code execution. Instead of giving models hundreds of tools, Alex believes the most powerful setup will be a simple code execution tool and a doc search tool. The AI writes code against an API’s SDK, runs it on a server, and checks the docs when it gets stuck. This is a must-watch for anyone who wants to understand MCP—and learn how to use them as a competitive edge. Watch below! Timestamps: Introduction: 00:01:14 Why Alex likes running barefoot: 00:02:54 APIs and MCP, the connectors of the new internet: 00:05:09 Why MCP servers are hard to get right: 00:10:53 Design principles for reliable MCP servers: 00:20:07 Scaling MCP servers for large APIs: 00:23:50 Using MCP for business ops at Stainless: 00:25:14 Building a company brain with Claude Code: 00:28:12 Where MCP goes from here: 00:33:59 Alex’s take on the security model for MCP: 00:41:10

Dan Shipper 📧

15,645 Aufrufe • vor 10 Monaten

NEAR AI Ecosystem – “What Did You Ship This Week?” Ep. 7 A big week across the NEAR AI ecosystem with updates on personalized data agents, TypeScript tooling, crowdsourced AI data, and non-custodial flows for token coordination + much more. Timestamps & Highlights: 00:00 – Intro by Cameron.near🇺🇸 from NEAR AI 01:00 – 𝕵𝖔𝖗𝖉𝖆𝖓✨🐾ヤᵇᵃ ͥ ꜝ9d from PublicAI explains how their platform lets users earn stablecoins and points by uploading and verifying native language audio clips. Data builders can now claim earnings directly to a NEAR Protocol wallet. Public beta is live. 09:35 – Matt Hamilton from ASIMOV Protocol demos their CLI tools for uploading structured datasets to NEAR, plus new knowledge graph visualizations and early experiments transcribing voice into semantic graphs. 15:55 – @tahpot_au from Verida 💜 shows how developers can access private user data for AI agents using the Verida Vault. Users retain full control over their data, with API keys gated by permission. 25:25 – Zahidul Islam from Jutsu | Work Smarter with AI Agents drops updates on the NEAR AI TypeScript SDK. One-command agent deployment, fully local dev support, and matching features with the Python SDK. Also demoed new AI-generated video tooling with Postt. 34:20 – Matt Lockyer from Proximity Labs shares the launch of their Base naming agent Basednames. Users post on X to mint names, pay with Bankr, and finalize with verified chain signatures powered by NEAR. All non-custodial. All live on Base. 50:35 – Charles previews Divvy Agent. Users can set portfolio growth and swap thresholds with natural language. Latest update adds persistent memory, improved LLM matching, and MPC integration for safe, automated execution. 59:36 – Cameron.near🇺🇸 closes out with updates from the NEAR AI core team. Hiring in progress, governance agents coming soon, and progress on privacy tooling and agent infra powering the NEAR AI Hub. The future is NEAR - the blockchain for AI. Catch the full replay:

NEARWEEK

35,143 Aufrufe • vor 1 Jahr