HomeTags#qiita

Tag timeline

#qiita 128 total

同じキーワードで束ねられた更新を確認できます。カテゴリをまたいだ関連ニュースや実装トピックの追跡に使えます。

Total 128
Showing 30
Page 1/5
Updated 1h ago

Entries page 1/5 · 128 total

Sat, Jun 13 2 entries
blog mcp 6d ago · qiita-mcp

【OCI】Database Tools MCP Server における認可実装を確認する In May 2026, Oracle Cloud Infrastructure's Database Tools service gained MCP Server functi…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · MCP / Tooling Medium priority · technical post · MCP / Tooling 公開 6月13日 Published Jun 13

AI要約 2026年5月、Oracle Cloud Infrastructure のデータベース・ツールサービスに MCP サーバー機能が追加された。本記事では、AI エージェントが Oracle Database へアクセスする際の認可(Authorization)の実装構造を実地で検証・解説している。

EN In May 2026, Oracle Cloud Infrastructure's Database Tools service gained MCP Server functionality, enabling AI agents to query Oracle databases via the Model Context Protocol. This article examines the authorization implementation that secures that access at a practical level.

fallback
blog vscode 6d ago · qiita-vscode

CodeRabbit VS Code拡張機能にPlan機能が追加されました! CodeRabbit's VS Code extension has received a new Plan feature, enhancing its AI-powered c…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · VS Code / Dev Env Medium priority · technical post · VS Code / Dev Env 公開 6月13日 Published Jun 13

AI要約 CodeRabbitのVS Code拡張機能に新たにPlan機能が追加されました。GitHub・GitLab・Bitbucketと連携するAIコードレビューサービスが、エディタ内でさらに高度な機能を提供します。

EN CodeRabbit's VS Code extension has received a new Plan feature, enhancing its AI-powered code review capabilities directly inside the editor for developers using GitHub, GitLab, or Bitbucket workflows.

CodeRabbit VS Code機能拡張にPlan機能が追加されました! og fallback
Fri, Jun 12 3 entries
blog copilot 1w ago · qiita-copilot

GitHub Copilot への「頼み方」を3段階に分類してみた ― 自分のチャット履歴を振り返って見えたこと A practitioner's reflection on over a year of daily GitHub Copilot usage, classifying prom…

通常 Normal 深掘り候補 · 技術記事 · GitHub Copilot Deep-dive candidate · technical post · GitHub Copilot 公開 6月12日 Published Jun 12

AI要約 1年以上の GitHub Copilot 活用経験をもとに、実際のチャット履歴を分析し、コーディングエージェントへの依頼スタイルを3段階に分類・整理した実践的な考察記事。

EN A practitioner's reflection on over a year of daily GitHub Copilot usage, classifying prompt strategies into three levels based on analysis of their own real chat history.

fallback
blog copilot 1w ago · qiita-copilot

AIにソースコードを読ませる前に「地図」を渡すためのツール群を作ってみた Passing raw source code directly to AI assistants like ChatGPT or GitHub Copilot often lea…

通常 Normal 深掘り候補 · 技術記事 · GitHub Copilot Deep-dive candidate · technical post · GitHub Copilot 公開 6月12日 Published Jun 12

AI要約 ChatGPTやGitHub Copilotに既存コードの調査を依頼する際、ソースをそのまま渡しても「どこから読むべきか」をAIが把握しにくいという課題がある。この問題に対し、C#プロジェクトのクラス構成や依存関係などを整形した「地図」情報を事前生成するツール群を自作した経緯と手法を解説した記事。

EN Passing raw source code directly to AI assistants like ChatGPT or GitHub Copilot often leaves the model without clear navigational context. This blog post describes a set of custom tools that pre-generate structured 'maps' of C# codebases—covering class hierarchies, namespace trees, and dependency graphs—so the AI can orient itself before analysis begins.

AIにソースコードを読ませる前に「地図」を渡すためのツール群を作ってみた og fallback
blog mcp 1w ago · qiita-mcp

Claude Code v2.1.172 サブエージェント5階層化と重要バグ修正まとめ Anthropic released Claude Code v2.1.172 and v2.1.173 in quick succession, introducing up t…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · MCP / Tooling Medium priority · technical post · MCP / Tooling 公開 6月12日 Published Jun 12

AI要約 Anthropic が Claude Code v2.1.172/v2.1.173 を連続リリース。サブエージェントの最大5階層スポーン対応という大型機能追加と、複数の重要バグ修正が含まれる。

EN Anthropic released Claude Code v2.1.172 and v2.1.173 in quick succession, introducing up to five layers of sub-agent spawning and addressing several critical bug fixes.

fallback
Thu, Jun 11 1 entries
blog local-llm 1w ago · qiita-llm

Turing世代のGPU「RTX 2070」1台でローカルQLoRAファインチューニングに挑む(進行中) A work-in-progress account of running QLoRA fine-tuning locally on a single RTX 2070 (8 GB…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · Local LLM / Open Models Medium priority · technical post · Local LLM / Open Models 公開 6月11日 Published Jun 11

AI要約 VRAM 8GBのRTX 2070(Turing世代)1台を使い、個人データをクラウドに送らずローカル環境でQLoRAファインチューニングを行う試みを記録した進行中の実験記事。

EN A work-in-progress account of running QLoRA fine-tuning locally on a single RTX 2070 (8 GB VRAM, Turing architecture), keeping all personal training data on-device without any cloud upload.

fallback
Wed, Jun 10 1 entries
blog local-llm 1w ago · qiita-llm

MacでローカルLLM!Ollama × ELYZAで構築するAI環境(ターミナル・API・WebUI) A Qiita tutorial showing how to run ELYZA, a Japanese-specialised LLM, on Apple Silicon Ma…

通常 Normal 深掘り候補 · 技術記事 · Local LLM / Open Models Deep-dive candidate · technical post · Local LLM / Open Models 公開 6月10日 Published Jun 10

AI要約 Mac(Apple Silicon)にOllamaと日本語特化LLM「ELYZA」を組み合わせ、ターミナル・REST API・WebUIの3通りでローカルAI環境を構築する手順を紹介した入門チュートリアル記事。

EN A Qiita tutorial showing how to run ELYZA, a Japanese-specialised LLM, on Apple Silicon Macs via Ollama, covering terminal commands, REST API integration, and WebUI chat access.

MacでローカルLLM!Ollama × ELYZAで構築するAI環境(ターミナル・API・WebUI) og fallback
Tue, Jun 9 1 entries
blog mcp 1w ago · qiita-mcp

[Bedrock AgentCore Gateway × Keycloak] MCP 2025-11-25 認可仕様に準拠したKeycloakでCIMDと認可コードフローを利用したMCP認可を試してみた A Hitachi engineer demonstrates MCP authorization using AWS Bedrock AgentCore Gateway and …

重要度 Medium Medium priority 重要度 Medium · 技術記事 · MCP / Tooling Medium priority · technical post · MCP / Tooling 公開 6月9日 Published Jun 9

AI要約 日立製作所のエンジニアが、AWS Bedrock AgentCore GatewayとKeycloakを用いてMCP 2025-11-25認可仕様のCIMDおよび認可コードフローを動作検証した実践的技術記事。

EN A Hitachi engineer demonstrates MCP authorization using AWS Bedrock AgentCore Gateway and Keycloak as the IdP, verifying the CIMD mechanism and Authorization Code Flow defined in the MCP 2025-11-25 specification.

fallback
Mon, Jun 8 1 entries
blog copilot 1w ago · qiita-copilot

AIエージェントのトークン代を節約する CLAUDE.md と copilot-instructions.md 実践ガイド――毎ターン何が起きているのか A practical guide explaining how CLAUDE.md and copilot-instructions.md are injected every …

重要度 Medium Medium priority 重要度 Medium · 技術記事 · GitHub Copilot Medium priority · technical post · GitHub Copilot 公開 6月8日 Published Jun 8

AI要約 CLAUDE.md や copilot-instructions.md が毎ターンのシステムプロンプトに埋め込まれる仕組みを解説し、トークンコストを抑えるための実践的な書き方を紹介する記事。

EN A practical guide explaining how CLAUDE.md and copilot-instructions.md are injected every agent turn as system prompts, and how to keep them concise to reduce token costs.

fallback
Sun, Jun 7 1 entries
blog local-llm 1w ago · qiita-llm

ローカルLLMは「ラ・サール中」の難問を解けるのか?最新モデル比較で見えた驚きの知能差 A benchmark blog post testing multiple local LLMs on La Salle Junior High School entrance …

重要度 Medium Medium priority 重要度 Medium · 技術記事 · Local LLM / Open Models Medium priority · technical post · Local LLM / Open Models 公開 6月7日 Published Jun 7

AI要約 ラ・サール中学の入試算数問題を複数の最新ローカルLLMに解かせ、モデルごとの推論能力の差を比較検証した記事。期待に反し、モデル間で「驚きの知能差」が浮き彫りになったとされる。

EN A benchmark blog post testing multiple local LLMs on La Salle Junior High School entrance exam math problems, revealing surprising reasoning capability gaps among the compared models.

fallback
Sat, Jun 6 1 entries
blog vscode 1w ago · qiita-vscode

Lean + Mathlib + VS Code の環境を構築してみる A step-by-step guide to setting up the Lean theorem prover with Mathlib and VS Code, demon…

通常 Normal 深掘り候補 · 技術記事 · VS Code / Dev Env Deep-dive candidate · technical post · VS Code / Dev Env 公開 6月6日 Published Jun 6

AI要約 macOS 15.6.1 を例に、定理証明支援システム Lean と数学ライブラリ Mathlib を VS Code 上で動かす環境構築手順を紹介。Windows・Linux でも同様の手順が利用可能とされている。

EN A step-by-step guide to setting up the Lean theorem prover with Mathlib and VS Code, demonstrated on macOS 15.6.1 but explicitly designed to work on Windows and Linux as well.

Lean + Mathlib + VS Code の環境を構築してみる og fallback
Fri, Jun 5 2 entries
blog claude 1w ago · qiita-claude

【絶対やるな】Claude 6/15改定の課金回避を思いついたが、規約違反でBANリスクなので供養します A developer running Claude Code on a Raspberry Pi devised a billing workaround for Claude'…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · Claude / Claude Code Medium priority · technical post · Claude / Claude Code 公開 6月5日 Published Jun 5

AI要約 Claude の2026年6月15日課金ポリシー改定に際し料金回避策を考案した著者が、利用規約違反によるBAN리スクを理由に手法を公開せず「供養」として記事化した体験談。

EN A developer running Claude Code on a Raspberry Pi devised a billing workaround for Claude's June 15 pricing revision, then chose not to share it after recognizing it would violate Anthropic's Terms of Service and risk account banning.

fallback
blog mcp 2w ago · qiita-mcp

Vite Single Fileで作る軽量MCP Apps UI:単一HTML制限の技術的背景と双方向通信のミニマル実装 Explores building lightweight MCP Apps (SEP-1865) UIs within the single-HTML-file constrai…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · MCP / Tooling Medium priority · technical post · MCP / Tooling 公開 6月5日 Published Jun 5

AI要約 MCP Apps(SEP-1865)の単一HTMLファイル制限の技術的背景を解説し、Viteのシングルファイルビルドを使った軽量UIと双方向通信のミニマル実装を紹介する。

EN Explores building lightweight MCP Apps (SEP-1865) UIs within the single-HTML-file constraint using Vite's single-file build mode and minimal bidirectional communication patterns.

fallback
Thu, Jun 4 4 entries
blog copilot 2w ago · qiita-copilot

Visual Studio 2026 の GitHub Copilot で LM Studio のローカル LLM を使う! A practical guide to connecting LM Studio's locally running LLM to GitHub Copilot inside V…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · GitHub Copilot Medium priority · technical post · GitHub Copilot 公開 6月4日 Published Jun 4

AI要約 GitHub Copilot の値上げを機に、Visual Studio 2026 から LM Studio のローカル LLM を GitHub Copilot 経由で活用する手順を解説した記事。

EN A practical guide to connecting LM Studio's locally running LLM to GitHub Copilot inside Visual Studio 2026, motivated by a recent GitHub Copilot price increase.

fallback
blog cursor 2w ago · qiita-cursor

Cursor Enterprise の Organizations 機能が GA — 3階層で複数チームを一元管理 Cursor has officially launched its Organizations feature for Enterprise customers, introdu…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · AI Editors Medium priority · technical post · AI Editors 公開 6月4日 Published Jun 4

AI要約 2026年6月3日、Cursor は Enterprise 顧客向けに Organizations 機能を一般提供(GA)した。従来はチーム単位が管理の最上位だったが、新たに Organization → Team → Member の3階層構造が導入され、複数チームを横断した一元管理が可能になった。

EN Cursor has officially launched its Organizations feature for Enterprise customers, introducing a three-tier hierarchy—Organization, Team, and Member—that allows centralized management of multiple teams under a single umbrella account.

fallback
blog cursor 2w ago · qiita-cursor

複数端末・複数AIツール(Cursor / Claude Code)を行き来してもコンテキストを失わない作業環境を作る A practical guide to designing a workflow that preserves context when switching between mu…

通常 Normal 深掘り候補 · 技術記事 · AI Editors Deep-dive candidate · technical post · AI Editors 公開 6月4日 Published Jun 4

AI要約 CursorやClaude Codeなど複数のAIエージェントツールを異なる端末で使い回す際に、作業コンテキストを引き継ぐための環境設計を解説した記事。セッションをまたいでも思考の流れを維持するための実践的な手法が紹介されている。

EN A practical guide to designing a workflow that preserves context when switching between multiple AI coding tools like Cursor and Claude Code across different devices, ensuring seamless continuity of thought across sessions.

fallback
blog mcp 2w ago · qiita-mcp

Claude Code v2.1.161 - MCPシークレット漏洩の重大修正と並列実行の堅牢化 JA Claude Code v2.1.161 - MCPシークレット漏洩の重大修正と並列実行の堅牢化

重要度 Medium Medium priority 重要度 Medium · 技術記事 · MCP / Tooling Medium priority · technical post · MCP / Tooling 公開 6月4日 Published Jun 4

AI要約 はじめに 2026年6月3日、Claude Code v2.1.161 がリリースされました。今回のリリースには22件の変更(機能改善・バグ修正)が含まれており、中でも 2件の重要な修正 が開発者に直接影響を与えます。 claude mcp

Claude Code v2.1.161 - MCPシークレット漏洩の重大修正と並列実行の堅牢化 og fallback
Wed, Jun 3 12 entries
blog cursor 2w ago · qiita-cursor

Home Assistant MCP で陽キャAIエージェントがビーム(物理)を放つまで A developer connects an AI agent to their Home Assistant smart home setup via MCP, enablin…

通常 Normal 深掘り候補 · 技術記事 · AI Editors Deep-dive candidate · technical post · AI Editors 公開 6月3日 Published Jun 3

AI要約 SwitchBot Hub と Home Assistant を連携させた自宅スマートホーム環境に、MCP(Model Context Protocol)を介してAIエージェントを接続し、1600万色対応RGBフロアライトを自然言語で操作するまでの構築記録。AIが「ビームを放つ」演出として派手な発光を実現している。

EN A developer connects an AI agent to their Home Assistant smart home setup via MCP, enabling natural language control of an RGB floor light capable of 16 million colors—culminating in the AI dramatically firing a 'beam' of light on command.

fallback
blog mcp 2w ago · qiita-mcp

Claude in Chrome MCPとCowork、CLIからブラウザを操る2つの方法——実測で分かった使い分け A hands-on comparison of two ways to control a browser from Claude Code CLI—Cowork and the…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · MCP / Tooling Medium priority · technical post · MCP / Tooling 公開 6月3日 Published Jun 3

AI要約 Claude Code(CLI)からブラウザを操作する手段として、Coworkに加えてClaude in Chrome MCPが利用可能になった。本記事では両者を実際に動かして比較し、それぞれの得意領域と使い分けの指針を整理している。

EN A hands-on comparison of two ways to control a browser from Claude Code CLI—Cowork and the Claude in Chrome MCP—covering practical differences and guidance on when to use each.

fallback
blog vscode 2w ago · qiita-vscode

【VS Code・WSL】「VS Code Server for WSL closed unexpectedly」の解消法 This article explains how to resolve the 'VS Code Server for WSL closed unexpectedly' erro…

通常 Normal 深掘り候補 · 技術記事 · VS Code / Dev Env Deep-dive candidate · technical post · VS Code / Dev Env 公開 6月3日 Published Jun 3

AI要約 Windows 10環境でVS CodeからWSLにリモート接続する際に発生する「VS Code Server for WSL closed unexpectedly」エラーの原因と解決策を紹介。WSL(非WSL2)とUbuntu 20.04 LTSの組み合わせで確認された事例をもとに手順を解説している。

EN This article explains how to resolve the 'VS Code Server for WSL closed unexpectedly' error that occurs when connecting to WSL from VS Code on Windows 10. The fix is based on a confirmed case using WSL (not WSL2) with Ubuntu 20.04.6 LTS and VS Code 1.122.1.

fallback
blog vscode 2w ago · qiita-vscode

Windows・Windows Terminal・VS Code を一括でテーマ切替する A Python CLI tool that synchronizes light/dark theme toggling across Windows system settin…

通常 Normal 深掘り候補 · 技術記事 · VS Code / Dev Env Deep-dive candidate · technical post · VS Code / Dev Env 公開 6月3日 Published Jun 3

AI要約 Python 製 CLI ツールで Windows のライト/ダークテーマ切替に連動して Windows Terminal・VS Code のカラーテーマと壁紙色を一括変更する方法を紹介。

EN A Python CLI tool that synchronizes light/dark theme toggling across Windows system settings, Windows Terminal color schemes, VS Code themes, and wallpaper tones in a single command.

fallback
🔥 HOT blog claude 2w ago · qiita-claude

AnthropicがフラッグシップモデルClaude 4.8 Opusをリリース——性能・コンテキスト・コストを刷新 Anthropic has released Claude 4.8 Opus, its latest flagship model, reportedly delivering s…

重要度 High High priority 重要度 High · 技術記事 · Claude / Claude Code High priority · technical post · Claude / Claude Code 公開 6月3日 Published Jun 3

AI要約 Anthropicが最新フラッグシップモデル「Claude 4.8 Opus」を発表した。ベンチマーク性能の大幅向上に加え、コンテキストウィンドウの拡張とコスト削減を同時に実現しており、企業向けAI活用の幅がさらに広がると見られる。

EN Anthropic has released Claude 4.8 Opus, its latest flagship model, reportedly delivering significant benchmark improvements alongside expanded context windows and reduced pricing, potentially reshaping enterprise AI deployment strategies.

fallback
blog cursor 2w ago · qiita-cursor

【独学6ヶ月】文系大学生がCursor AIと17時間死闘して、Stripe決済・GPU自動執筆・営業時間連動の「AI不夜城」を開発した知見まとめ JA 【独学6ヶ月】文系大学生がCursor AIと17時間死闘して、Stripe決済・GPU自動執筆・営業時間連動の「AI不夜城」を開発した知見まとめ

通常 Normal 深掘り候補 · 技術記事 · AI Editors Deep-dive candidate · technical post · AI Editors 公開 6月3日 Published Jun 3

AI要約 🚀 はじめに こんにちは、**ZeNx(ゼン)**と申します。 私は大学で経営・マーケティングを学んでいる文系の学生で、システム開発に関する専門知識は一切ありません。プログラミングを独学で始めてから、まだたったの6ヶ月です。プログラミング

fallback
blog claude 2w ago · qiita-claude

【6/15〜】Claude Code の課金変更、何が対象で何が対象外かを公式情報だけで整理 Starting June 15, 2026, programmatic usage of Claude via the Agent SDK, claude -p, and Git…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · Claude / Claude Code Medium priority · technical post · Claude / Claude Code 公開 6月3日 Published Jun 3

AI要約 2026年6月15日より、Claude Pro/Max サブスクリプションにおいて、Claude Agent SDK・claude -p・GitHub Actions などプログラム経由の利用が従来のサブスク枠から切り離され、別途課金対象となる。公式情報をもとに対象範囲を整理した記事。

EN Starting June 15, 2026, programmatic usage of Claude via the Agent SDK, claude -p, and GitHub Actions will be billed separately from standard Pro/Max subscription allowances. This article clarifies what is and isn't covered based solely on official Anthropic information.

【6/15〜】Claude Code の課金変更、結局「何が対象で何が対象外」なのか公式情報だけで整理した og fallback
blog claude 2w ago · qiita-claude

Claude Opus 4 廃止まで2週間:Opus 4.8移行と最新API変更まとめ Anthropic announced the deprecation of Claude Opus 4 and Sonnet 4 on June 15, 2026, recomm…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · Claude / Claude Code Medium priority · technical post · Claude / Claude Code 公開 6月3日 Published Jun 3

AI要約 2026年6月2日、Anthropic は Claude Opus 4 および Sonnet 4 を同月15日に廃止すると発表。移行先として Opus 4.8 が推奨されており、あわせて複数のAPI仕様変更も告知された。

EN Anthropic announced the deprecation of Claude Opus 4 and Sonnet 4 on June 15, 2026, recommending Opus 4.8 as the migration target alongside several API specification updates.

fallback
🔥 HOT blog local-llm 2w ago · qiita-llm

NVIDIA、Windows PC向けAIチップ「RTX Spark」発表——大規模AIをローカル実行、PC市場へ本格参入 NVIDIA has announced RTX Spark, a new AI chip for Windows PCs designed to run large-scale …

重要度 High High priority 重要度 High · 技術記事 · Local LLM / Open Models High priority · technical post · Local LLM / Open Models 公開 6月3日 Published Jun 3

AI要約 NVIDIAがWindows PC向けの新AIチップ「RTX Spark」を発表。クラウドに頼らず手元のPCで大規模AIモデルをローカル実行できる環境を実現する。

EN NVIDIA has announced RTX Spark, a new AI chip for Windows PCs designed to run large-scale AI models locally without relying on cloud services, marking a serious push into the consumer PC market.

fallback
blog mcp 2w ago · qiita-mcp

Google Antigravity入門 — エージェントファーストIDEでAI開発を自動化する Google Antigravity is an agent-first IDE announced alongside Gemini 3 in November 2025, de…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · MCP / Tooling Medium priority · technical post · MCP / Tooling 公開 6月3日 Published Jun 3

AI要約 GoogleがGemini 3と同時に発表したエージェントファーストIDE「Antigravity」は、AIエージェントを指揮・自動化することに特化しており、Claude CodeやCursorとは一線を画すアプローチでAI開発の新たな地平を開こうとしている。

EN Google Antigravity is an agent-first IDE announced alongside Gemini 3 in November 2025, designed not to assist coding but to orchestrate AI agents, representing a fundamentally different paradigm from tools like Cursor or Claude Code.

fallback
blog vscode 2w ago · qiita-vscode

VSCodeでWebビューの読み込みエラーが発生する JA VSCodeでWebビューの読み込みエラーが発生する

通常 Normal 深掘り候補 · 技術記事 · VS Code / Dev Env Deep-dive candidate · technical post · VS Code / Dev Env 公開 6月3日 Published Jun 3

AI要約 この記事は過去のエラー解決メモを整理したものです。 現在の推奨手順とは異なる可能性があります。 公式ドキュメントを確認して最新情報と差分がないかを確認してください。 事象 Jupyter拡張機能をアンインストールしてVSCodeをアップデー

fallback
blog claude 2w ago · qiita-claude

Claude Code v2.1.160: トリガーキーワードが「ultracode」に変更・セキュリティ強化 Claude Code v2.1.160 introduces a breaking change: the trigger keyword for dynamic workflo…

重要度 Medium Medium priority 重要度 Medium · 技術記事 · Claude / Claude Code Medium priority · technical post · Claude / Claude Code 公開 6月3日 Published Jun 3

AI要約 Claude Code v2.1.160 がリリースされ、動的ワークフローを起動するトリガーキーワードが「workflow」から「ultracode」に変更された。日常的な利用に影響する破壊的変更を含むほか、セキュリティ面の強化も実施されている。

EN Claude Code v2.1.160 introduces a breaking change: the trigger keyword for dynamic workflows has been renamed from 'workflow' to 'ultracode', alongside security improvements that affect everyday usage.

fallback
Tue, Jun 2 1 entries
blog cursor 2w ago · qiita-cursor

AIに頼んだら「それ、計算できません」と言われた話——MCPで解決するAIの苦手な処理 AI assistants like Claude and ChatGPT are increasingly used across business roles, but the…

通常 Normal 深掘り候補 · 技術記事 · AI Editors Deep-dive candidate · technical post · AI Editors 公開 6月2日 Published Jun 2

AI要約 ChatGPTやClaudeなどのAIは業務効率化に広く使われているが、営業日計算や正確な日時処理など「苦手な処理」が存在する。本記事では、MCP(Model Context Protocol)サーバーを活用してこれらの限界を補う方法を紹介している。

EN AI assistants like Claude and ChatGPT are increasingly used across business roles, but they struggle with tasks like business-day calculations and precise datetime handling. This article explores how MCP (Model Context Protocol) servers can fill those gaps.

fallback