Skip to main content
Glama

Server Details

Your memory, everywhere AI goes. Build knowledge once, access it via MCP anywhere.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
graphlit/graphlit-mcp-server
GitHub Stars
372
Server Listing
Graphlit MCP Server

See and control every tool call

Log every tool call with full inputs and outputs
Control which tools are enabled per connector
Manage credentials once, use from any MCP client
Monitor uptime and get alerted when servers go down

Available Tools

3 tools
describe_toolsTry in Inspector

Get full descriptions and parameter schemas for specific tools. Use this after search_tools to understand how to call a tool. Returns complete tool definitions including all parameters and examples.

ParametersJSON Schema
NameRequiredDescriptionDefault
toolsYesList of tool names to describe. Get names from search_tools results.
execute_toolTry in Inspector

Execute a tool with its required parameters.

CRITICAL: You MUST include parameters from describe_tools in your call.

If describe_tools showed a parameter with "required": true, you MUST include it.

Examples:

  • describe_tools showed retrieveFacts needs {query: string, required: true} → execute_tool({tool: "retrieveFacts", parameters: {query: "Super Bowl teams"}})

  • describe_tools showed retrieveContents needs {search: string, required: true} → execute_tool({tool: "retrieveContents", parameters: {search: "quarterly revenue"}})

  • describe_tools showed ingestUrl needs {url: string, required: true} → execute_tool({tool: "ingestUrl", parameters: {url: "https://example.com"}})

DO NOT call execute_tool without parameters when the tool has required fields.

ParametersJSON Schema
NameRequiredDescriptionDefault
toolYesName of the tool to execute.
parametersNoREQUIRED for most tools. Copy the parameter names and values from describe_tools. Example: {search: "your query"} or {query: "your search term"}
search_toolsTry in Inspector

Find tools by capability (what the tool does).

Pass TOOL CAPABILITIES, not user questions:

  • "web search" - find tools that search the web

  • "search documents" - find tools that search documents

  • "retrieve facts" - find tools that retrieve facts

  • "ingest url" - find tools that ingest URLs

  • "search entities" - find tools that search people/companies

Examples: search_tools({capability: "web search"}) search_tools({capability: "search documents"})

Returns ranked tool matches. Use describe_tools next to see parameters.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of tools to return (default: 5)
capabilityYesTool capability to find. Use 2-4 words describing WHAT THE TOOL DOES, not the user question. Examples: "web search", "search documents", "retrieve facts", "ingest url".

FAQ

How do I claim this server?

To claim this server, publish a /.well-known/glama.json file on your server's domain with the following structure:

{ "$schema": "https://glama.ai/mcp/schemas/connector.json", "maintainers": [ { "email": "your-email@example.com" } ] }

The email address must match the email associated with your Glama account. Once verified, the server will appear as claimed by you.

What are the benefits of claiming a server?
  • Control your server's listing on Glama, including description and metadata
  • Receive usage reports showing how your server is being used
  • Get monitoring and health status updates for your server

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.