# Anthropic Administrator — MCP server on mcp.ai > Connect your Anthropic Administrator account and use 3 tools for AI models straight from your AI agent. Connect with your own API key. The Anthropic Admin API allows programmatic management of organizational resources, including members, workspaces, and API keys. By: mcp.ai · official Page: https://mcp.ai/anthropic_administrator ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_anthropic_administrator?ms=1787291400000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/anthropic_administrator/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/anthropic_administrator/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/anthropic_administrator/skill.md Postman collection (v2.1): https://mcp.ai/anthropic_administrator/postman.json ## Tools - anthropic_administrator_create_message(model: string, top_k?: integer, top_p?: number, system?: string, messages: object[], metadata?: object, max_tokens: integer, temperature?: number, stop_sequences?: string[]) — Create a message completion from Claude. Send a conversation history with user/assistant messages and receive Claude's response. Useful for: chatbots, Q&A systems, text generation, conversational AI, - anthropic_administrator_get_model(model_id: string) — Tool to retrieve details of a specific model by its ID. Use after confirming the model ID is valid. - anthropic_administrator_list_models(limit?: integer, after_id?: string, before_id?: string) — Tool to list available models. Use when you need to see which models are available before selection. Always source model IDs from this tool rather than hard-coding them; stale or outdated model IDs pa ## Example prompts - "What can I do in Anthropic Administrator?" - "Show me a summary of my Anthropic Administrator account" ## Links Docs: https://mcp.ai/docs/mcps/anthropic_administrator Website: https://mcp.ai/mcps/anthropic_administrator