Skip to content

Commit 21a8759

Browse files
committed
Add LangSmith MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit 21a8759

1 file changed

Lines changed: 75 additions & 0 deletions

File tree

servers/com.langsmith-mcp-uvx.json

Lines changed: 75 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,75 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.langsmith-mcp-uvx",
4+
"name": "LangSmith (uvx)",
5+
"alias": "langsmith",
6+
"description": "Connect to LangSmith to fetch conversation history, prompts, traces, runs, datasets, experiments, and billing usage data from your LangChain observability platform.",
7+
"logo": "https://avatars.githubusercontent.com/u/126733545?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"ai-ml",
11+
"monitoring"
12+
],
13+
"tags": [
14+
"langsmith",
15+
"langchain",
16+
"observability",
17+
"tracing",
18+
"llm",
19+
"monitoring",
20+
"prompts",
21+
"datasets"
22+
],
23+
"transport": {
24+
"type": "stdio",
25+
"command": "uvx",
26+
"args": [
27+
"langsmith-mcp-server"
28+
],
29+
"env": {
30+
"LANGSMITH_API_KEY": "${input:LANGSMITH_API_KEY}"
31+
},
32+
"metadata": {
33+
"inputs": [
34+
{
35+
"id": "LANGSMITH_API_KEY",
36+
"label": "LangSmith API Key",
37+
"description": "Your LangSmith API key, used to authenticate against the LangSmith API for traces, runs, prompts, and datasets.",
38+
"type": "text",
39+
"required": true,
40+
"secret": true,
41+
"placeholder": "lsv2_************************",
42+
"obtain": {
43+
"url": "https://smith.langchain.com/settings",
44+
"instructions": "1. Sign in at smith.langchain.com\n2. Open Settings\n3. Go to API Keys\n4. Create a new API key\n5. Copy the key (it begins with lsv2_)",
45+
"button_label": "Get API Key"
46+
}
47+
}
48+
]
49+
}
50+
},
51+
"auth": {
52+
"type": "api_key",
53+
"instructions": "Create a LangSmith API key under Settings > API Keys at https://smith.langchain.com/settings"
54+
},
55+
"contributor": {
56+
"name": "LangChain",
57+
"github": "langchain-ai",
58+
"url": "https://www.langchain.com/langsmith"
59+
},
60+
"links": {
61+
"repository": "https://github.com/langchain-ai/langsmith-mcp-server",
62+
"homepage": "https://www.langchain.com/langsmith",
63+
"documentation": "https://github.com/langchain-ai/langsmith-mcp-server#readme"
64+
},
65+
"platforms": [
66+
"all"
67+
],
68+
"capabilities": {
69+
"tools": true,
70+
"resources": false,
71+
"prompts": false,
72+
"read_only_mode": false
73+
},
74+
"changelog_url": "https://github.com/langchain-ai/langsmith-mcp-server/releases"
75+
}

0 commit comments

Comments
 (0)