Skip to main content
Glama
garland3

atlas-introspect-mcp

by garland3

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}
logging
{}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
extensions
{
  "io.modelcontextprotocol/ui": {}
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
atlas_statusA

Check that ATLAS is up and report what this server is pointed at.

Start here when another tool fails: it distinguishes "ATLAS is down" from "the feature is disabled" from "this server is aimed at the wrong URL".

list_conversationsA

List saved conversations, newest first.

Returns id, title, model, timestamps, message count, and a short preview. Use get_conversation for the messages themselves.

search_conversationsC

Search conversations by title and message content.

get_conversationA

Read one full conversation, including its messages.

Long messages are clipped per-message so a single large tool result cannot swamp the answer; raise max_message_chars when you need the full text of a specific turn.

list_conversation_tagsA

List the tags this user has applied to conversations.

get_mcp_configA

Read config/mcp.json — the whole file, or one server entry.

upsert_mcp_serverA

Add or replace one server entry in config/mcp.json.

The entry is replaced wholesale, not merged — read the current entry with get_mcp_config first and send it back with your change applied. The rest of the file is untouched, and the previous file is backed up.

A stdio entry looks like::

{"command": ["/abs/path/.venv/bin/entrypoint", "--stdio"],
 "cwd": "/abs/path", "transport": "stdio",
 "groups": ["users"], "description": "what it does"}
delete_mcp_serverA

Remove a server entry from config/mcp.json (previous file is backed up).

replace_mcp_configA

Overwrite config/mcp.json with a complete JSON document.

For restructuring several entries at once. Rejected unless content parses as an object of objects; the previous file is backed up either way. Prefer upsert_mcp_server for a single-server change.

list_workspacesA

List this user's workspaces (saved bundles of prompt/tool/RAG selections).

create_workspaceB

Create a workspace.

The selection fields are exactly what ATLAS restores when the workspace is applied; unknown keys are rejected by the API, so use these arguments rather than a free-form config blob.

update_workspaceA

Update a workspace's name, description, or selections.

config replaces the whole selection snapshot when given — read the current one with list_workspaces first. Allowed keys: active_prompt_key, selected_tools, selected_prompts, selected_data_sources, rag_enabled. Anything else is rejected by ATLAS.

delete_workspaceA

Delete a workspace. Not recoverable — confirm with the user first.

list_custom_promptsB

List this user's custom prompt library.

get_custom_promptA

Read one custom prompt in full, by id.

create_custom_promptB

Add a prompt to this user's library.

update_custom_promptA

Edit a custom prompt's title or content.

content replaces the whole text — read it with get_custom_prompt first if you are amending rather than rewriting.

delete_custom_promptA

Delete a custom prompt. Not recoverable — confirm with the user first.

list_prompt_filesA

List the markdown prompt files ATLAS loads from disk.

These are the defaults (system prompt, agent reason/observe/summary prompts), separate from the per-user library above. Editing one changes behaviour for every chat, and takes effect on the next ATLAS restart.

read_prompt_fileC

Read one on-disk prompt file.

write_prompt_fileA

Overwrite an on-disk prompt file, backing up the previous version.

Affects every chat in this instance and applies on the next ATLAS restart. Confirm with the user before changing system_prompt.md.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/garland3/atlas-introspect-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server