1. Conduid
  2. AI
  3. Langchain Skills
MCP server · AI

Langchain Skills

MCP server: Langchain Skills

Unclaimed last commit 6 months ago ai
44Fair

Scored 3 months ago · breakdown

About Langchain Skills

Langchain Skills is an MCP server published by christian-bromann in the AI category: mCP server: Langchain Skills. It has been installed 0 times through Conduid.

The repository has 2 stars and 1 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx langchain-skills

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Langchain Skills

Powered by Claude · Grounded in docs

I know everything about Langchain Skills. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

@langchain/skills

A deepagents-powered agent that scrapes LangChain documentation and generates skill.md files following the Agent Skills protocol.

Overview

This agent automatically explores the LangChain documentation and creates comprehensive skill files that help AI agents use LangChain effectively. Each skill file includes:

  • Decision tables for choosing the right components
  • Code examples with essential patterns
  • Boundaries defining what can/cannot be configured
  • Gotchas highlighting common mistakes
  • Links to full documentation

Installation

bun install

Environment Variables

You'll need to set up your API keys:

export ANTHROPIC_API_KEY=your-anthropic-api-key

Usage

Generate All Skills

Run the agent to automatically explore LangChain docs and generate skill files:

bun run start

Or:

bun run src/agent.ts

Output

Skill files are generated in the ./skills/ directory with the structure:

skills/
├── langchain-chat-models/
│   └── SKILL.md
├── langchain-prompts/
│   └── SKILL.md
├── langchain-chains/
│   └── SKILL.md
├── langchain-agents/
│   └── SKILL.md
├── langchain-memory/
│   └── SKILL.md
├── langchain-rag/
│   └── SKILL.md
├── langchain-document-loaders/
│   └── SKILL.md
├── langchain-vector-stores/
│   └── SKILL.md
├── langchain-output-parsers/
│   └── SKILL.md
└── langchain-callbacks/
    └── SKILL.md

Skill File Format

Each skill file follows the Agent Skills protocol:

---
name: skill-name
description: Brief description of the skill
---

# Skill Title

## Overview
Brief summary of the topic.

## Decision Table
| Need | Use |
| --- | --- |
| Simple Q&A | ChatOpenAI |
| Complex reasoning | Claude |

## Code Examples
Essential usage patterns.

## Boundaries
### Can Configure
- List of configurable items

### Requires External Setup
- List of items needing external setup

## Gotchas
- Common mistakes to avoid

## Links
- [Full Documentation](https://docs.langchain.com/...)

How It Works

  1. MCP Integration: Uses the LangChain docs MCP server to search documentation
  2. Deep Agent: Powered by deepagents with filesystem middleware
  3. Systematic Exploration: Explores all major LangChain topics
  4. Skill Generation: Creates structured skill files following the protocol

Development

This project uses:

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Langchain Skills

How do I install Langchain Skills?

Run npx langchain-skills, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Langchain Skills safe to use with an AI agent?

Its trust score is 44 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Langchain Skills still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.