Skip to content

Commit 34d3261

Browse files
authored
feat: add Atlan MCP Server to mcp-registry (#52)
1 parent d47ac1f commit 34d3261

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
name: atlan-mcp-server
2+
image: mcp/atlan-mcp-server
3+
type: server
4+
meta:
5+
category: database
6+
tags:
7+
- atlan
8+
- metadata
9+
about:
10+
title: Atlan MCP Server
11+
description: MCP server for interacting with Atlan services including asset search, updates, and lineage traversal for comprehensive data governance and discovery.
12+
icon: https://avatars.githubusercontent.com/u/51372284?s=200&v=4
13+
source:
14+
project: https://github.com/atlanhq/agent-toolkit
15+
branch: main
16+
directory: modelcontextprotocol
17+
config:
18+
description: Configure the connection to Atlan
19+
secrets:
20+
- name: atlan-mcp-server.atlan_api_key
21+
env: ATLAN_API_KEY
22+
example: <YOUR_ATLAN_API_KEY>
23+
- name: atlan-mcp-server.atlan_base_url
24+
env: ATLAN_BASE_URL
25+
example: https://your-instance.atlan.com
26+
env:
27+
- name: ATLAN_AGENT_ID
28+
example: your-agent-id
29+
value: '{{atlan-mcp-server.atlan_agent_id}}'
30+
- name: MCP_HOST
31+
example: 0.0.0.0
32+
value: '{{atlan-mcp-server.mcp_host}}'
33+
- name: MCP_PORT
34+
example: "8000"
35+
value: '{{atlan-mcp-server.mcp_port}}'
36+
- name: MCP_TRANSPORT
37+
example: stdio
38+
value: '{{atlan-mcp-server.mcp_transport}}'
39+
parameters:
40+
type: object
41+
properties:
42+
atlan_agent_id:
43+
type: string
44+
description: Optional agent identifier for Atlan
45+
mcp_host:
46+
type: string
47+
description: MCP server host
48+
mcp_port:
49+
type: string
50+
description: MCP server port
51+
mcp_transport:
52+
type: string
53+
description: MCP transport type (stdio/sse)
54+
required: []

0 commit comments

Comments
 (0)