Skip to main content

ai-llm-agentic-tooling-mcp

Implements best practices for applying the Model Context Protocol (MCP) in AI/LLM environments, facilitating effective management of servers, clients, tools, resources, and prompts.

설치로 이동

소스 정보

저장소
paulpas/agent-skill-router
최근 소스 활동
2026년 6월 10일 18:00
감지된 SKILL.md 언어
영어
스타
4
포크
1

설치 방법

기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.

소스 파일 검토

설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.

SKILL.md 표시 중

SKILL.md
소스 지침 · 읽기 전용 미리보기
name
ai-llm-agentic-tooling-mcp
description
Implements best practices for applying the Model Context Protocol (MCP) in AI/LLM environments, facilitating effective management of servers, clients, tools, resources, and prompts.
license
MIT
compatibility
opencode
metadata
{"version":"1.0.0","domain":"agent","triggers":"mcp, model context protocol, server management, client management, resources","archetypes":["tactical"],"anti_triggers":["brainstorming","vague ideation","single-agent monolith"],"response_profile":{"verbosity":"low","directive_strength":"high","abstraction_level":"operational"},"role":"implementation","scope":"implementation","output-format":"code","related-skills":"ai-llm-agentic-tooling-langchain-langgraph"}
# AI LLM Agentic Tooling with Model Context Protocol (MCP) Implements best practices and guidelines for applying the Model Context Protocol (MCP) in AI and LLM environments. Focuses on the effective management of servers, clients, tools, resources, and prompts. ## Use Cases Use this skill when: - Building scalable LLM applications that require contextual awareness. - Managing resources in a multi-layered AI architecture. - Implementing protocols for efficient handling of contexts and state. ## Implementation Patterns This skill outlines the implementation of best practices for applying the Model Context Protocol (MCP) in AI and LLM environments. It focuses on efficient management of resources and contextual state to optimize performance and ease-of-use for users and developers alike. ### Basic MCP Implementation Here's how to initiate a basic Model Context: ```python class ModelContext: def __init__(self): self.context = {} def update_context(self, key: str, value: str): self.context[key] = value def get_context(self, key: str) -> str: return self.context.get(key, "") ``` ### Advanced Context Management This section includes management strategies for context handling: ```python class AdvancedModelContext(ModelContext): def merge_context(self, new_context: dict): self.context.update(new_context) def clear_context(self): self.context.clear() ``` ### Constraints on Use Ensure adherence to the following constraints when working with MCP: - Maintain strict input/output structures for context objects. - Implement thorough logging to track context changes. ## Metadata Updates ```yaml archetypes: tactical anti_triggers: - generic model context - vague context request response_profile: verbosity: medium directive_strength: high abstraction_level: operational ``` ### Basic MCP Implementation ```python class ModelContext: def __init__(self): self.context = {} def update_context(self, key: str, value: str): self.context[key] = value def get_context(self, key: str) -> str: return self.context.get(key, "") ``` ### Advanced Context Management ```python class AdvancedModelContext(ModelContext): def merge_context(self, new_context: dict): self.context.update(new_context) def clear_context(self): self.context.clear() ``` ### Constraints on Use - Ensure prompt structures are maintained to maximize performance and clarity. - Validate all context objects to ensure they adhere to expected formats and types.
GitHub에서 보기