Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion apps/web/app/how-it-works/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,8 @@ curl -s https://mcp.agenticterminal.ai/v1/merchants/bitrefill | python3 -m json.
{ "mcpServers": { "at-directory": { "url": "https://mcp.agenticterminal.ai/mcp" } } }

# B. Local MCP (npm, Node >= 20)
npm install -g @agenticterminal/mcp-server
# not yet on npm; use the hosted URL above
npx -y @modelcontextprotocol/inspector https://mcp.agenticterminal.ai/mcp

# C. REST, for agents that don't speak MCP
curl 'https://mcp.agenticterminal.ai/v1/merchants?rail=lightning'
Expand Down
3 changes: 2 additions & 1 deletion apps/web/app/skill/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ curl -fsSL https://agenticterminal.ai/SKILL.md \\
{ "mcpServers": { "at-directory": { "url": "https://mcp.agenticterminal.ai/mcp" } } }

# B. Local MCP (npm, Node >= 20)
npm install -g @agenticterminal/mcp-server
# not yet on npm; use the hosted URL above
npx -y @modelcontextprotocol/inspector https://mcp.agenticterminal.ai/mcp

# C. Plain REST — for agents that don't speak MCP
curl 'https://mcp.agenticterminal.ai/v1/merchants?rail=lightning'
Expand Down
4 changes: 2 additions & 2 deletions apps/web/components/AgentInstallSnippet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ export function AgentInstallSnippet() {
}
}

# Local
npm install -g @agenticterminal/mcp-server
# Local (not yet on npm; use the hosted URL above)
npx -y @modelcontextprotocol/inspector https://mcp.agenticterminal.ai/mcp

# Example tool call
search_merchants({ rail: "usdt", chain: "tron", category: "gift-cards" })`}
Expand Down
Loading