Sciple Platform MCP Server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sciple Platform MCP Serverlist all AWS accounts in my tenant"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Sciple Platform MCP Server
MCP server that lets a local Claude populate and manage Sciple platform content — environments, services, observability dashboards, runbooks, projects, and tickets — via the Sciple REST API. Engineers use it to bootstrap tenant structure, maintain the service catalog, build dashboards, author runbooks, and triage tickets without leaving their AI coding session.
Distribution channels:
Channel | Use it from | How to install |
PyPI | Claude Code, custom scripts, CI |
|
MCP Registry | Anywhere an MCP client speaks the registry protocol | Resolves automatically by |
Desktop Extension ( | Claude Desktop | Double-click |
MCP Registry: https://registry.modelcontextprotocol.io/v0/servers/io.github.navaganeshr%2Fsciple-mcp
Install
# Install uv (one-time, only if you don't have it)
curl -LsSf https://astral.sh/uv/install.sh | shuvx sciple-mcp resolves the latest version from PyPI and caches it.
Related MCP server: tracecat-mcp-community
Authentication — OAuth only (v0.7.0+)
sciple-mcp authenticates against the Sciple platform via OAuth 2.0
with PKCE. The CLI is a credential helper: log in once via the
browser, the access + refresh tokens land in ~/.sciple/credentials.json
(mode 0600), and the MCP server reads + auto-refreshes from there.
PAT support was removed in v0.7.0. Earlier versions accepted
SCIPLE_API_TOKEN=sciple_pat_…in the env (stdio mode). That path is gone — the only credential the MCP server understands is the OAuth JWT minted bysciple-mcp login. Personal Access Tokens on the platform are unchanged and still work for scripts / CI / direct REST calls against/api/v1/*.
1. Log in (one-time per platform)
sciple-mcp login --platform-url https://your.sciple.cloudOpens your browser, you click Approve on the consent page, the CLI
captures the callback and writes the credential. No --tenant-id /
--scope needed — the JWT inherits your full role on whichever tenant
the dashboard is currently showing.
2. Wire into Claude
The Sciple platform now hosts /mcp itself, so the preferred shape is
Streamable HTTP straight to the platform:
# Claude Code (HTTP transport — preferred)
claude mcp add-json sciple-platform "$(cat <<EOF
{
"type": "http",
"url": "https://your.sciple.cloud/mcp",
"headers": { "Authorization": "Bearer $(sciple-mcp print-token)" }
}
EOF
)"For Claude Desktop builds that only speak stdio MCP today, use the stdio mode — same credential, no PAT:
{
"mcpServers": {
"sciple-platform": {
"command": "uvx",
"args": ["sciple-mcp"],
"env": {
"SCIPLE_PLATFORM_URL": "https://your.sciple.cloud"
}
}
}
}SCIPLE_PLATFORM_URL is optional — only needed if you have multiple
platforms cached. Stdio mode reads ~/.sciple/credentials.json
directly.
3. Manage / rotate
sciple-mcp print-token # current valid JWT (auto-refreshes near expiry)
sciple-mcp logout # forget local cache
sciple-mcp logout --revoke # also revoke the refresh token server-sideRevoke any time from Profile → Connected apps on the dashboard.
Legacy: sciple-mcp serve (local HTTP server)
For air-gapped deployments where the client can't reach the platform's
hosted /mcp endpoint, sciple-mcp serve still ships a local
Streamable HTTP MCP server that re-validates OAuth JWTs against the
platform's JWKS. Same credential, same flow — only the network shape
differs. See --help for serve / install / uninstall.
Tools
Cloud inventory (read-only)
Tool | Description |
| List AWS accounts connected to the tenant (account_id, name, AWS number, regions, payer flag) |
| List synced resource types + row counts for one AWS service in an account |
| Query cached rows from any synced AWS resource table (paginated, region filter) |
| Summarize EC2 instances for one account or across all (state/type/id/name/ip) |
These read the platform's last AWS sync — they never call AWS directly and
never mutate anything. They require the credential to hold cloud.view.
Example — explore your AWS estate
Ask Claude in plain language; it chains the tools for you:
You: What EC2 instances are running across all our AWS accounts?
Claude calls list_ec2_instances (no account_id → sweeps every connected
account) and summarizes:
45 EC2 instances across 4 accounts.
### Production (account_id=LlDZzq) — 13 instances (12 running, 1 shutting-down)
[running] m5.2xlarge i-047323d5f680e822f portal-apps-ondemand (10.40.2.11)
[running] t2.micro i-00fcaed2de8131fd1 prod-nat-instance-1a (10.40.0.9)
...To drill into a single account, or a different resource type, Claude discovers what's synced first, then queries it:
You: Show the RDS databases in the Production account.
1. list_aws_accounts → Production has account_id "LlDZzq"
2. list_cloud_resource_types( → aws_rds_db_instance: 4
account_id="LlDZzq", service="rds")
3. query_cloud_resources( → 4 rows (engine, class, status, endpoint…)
account_id="LlDZzq", service="rds",
resource_type="aws_rds_db_instance")query_cloud_resources is the generic accessor for any of the 19 supported
services (ec2, rds, s3, vpc, iam, lambda, eks, ecs, ebs,
elasticache, route53, cloudfront, dynamodb, ecr, efs, and the
code* suite) — pass an unknown service and the tool returns the valid set.
Use region to filter ("global" for S3) and page / page_size (≤500) to
walk large tables.
Environments
Tool | Description |
| List all environments in the tenant (id, name, slug, group, default flag) |
| Create an environment with optional group assignment and default flag |
| Update an environment's name, description, group, or sort order |
| Delete an environment by id (irreversible) |
| List environment groups (id, name, slug, AWS account binding) |
| Create an environment group with optional AWS account binding |
Services
Tool | Description |
| List all services in the tenant catalog (id, name, slug) |
| Create a service in the catalog with kind, language, SCM provider, and repository |
| Update a service's metadata, lifecycle, owner, tags, links, or environment associations |
| Delete a service from the catalog by id (irreversible) |
Observability
Tool | Description |
| List all observability dashboards in the tenant (id, name, panel count) |
| Get a dashboard's name, description, and panel list |
| Create a new dashboard with optional description |
| Replace a dashboard's name and description (full PUT; name required) |
| Delete a dashboard and all its panels (irreversible) |
| Add a panel to a dashboard. Supports 5 shapes end-to-end (pick one): PromQL ( |
| Delete a panel from a dashboard (irreversible) |
Runbooks
Tool | Description |
| List all runbooks in the tenant with lifecycle status and cell count |
| Get a runbook with its cells (name, status, content preview per cell) |
| Create a new runbook in draft status |
| Add a markdown / shell / http cell to a runbook with optional k8s/ecs/ec2 target |
| Update a cell's content or execution target |
| Remove a cell from a runbook |
| Set the execution order of all cells in a runbook |
| Advance the runbook lifecycle: draft → reviewed → standard |
| Mark a runbook as deprecated |
Runbook lifecycle: draft → reviewed → standard. Deprecation is one-way from any state.
Projects
Tool | Description |
| List all projects in the tenant (id, key, name, classification) |
| Get a single project's details (owner, description, classification) |
| Create a new project (name + uppercase key like "PLAT", optional classification + owner) |
| List the user_ids and roles of a project's members (use to find an assignee) |
| List a project's issue types (required before |
Tickets
Tool | Description |
| List tickets across the tenant with optional filters (service, assignee, status, priority, type, tag, full-text |
| Get a single ticket's full details + activity counts (by internal id) |
| Create a service-level ticket (not bound to a project) — |
| PATCH a ticket — change status, priority, assignee, dates, tags, parent |
| Add a comment to a ticket — |
| Relate two tickets ( |
| List tickets in a project |
| Get a project ticket by sequence number (the NNN in KEY-NNN) |
| Create a ticket inside a project — returns a "KEY-NNN" display id. Recommended for most ticket creation. Supports |
Ticket statuses: open → in_progress → done (or cancelled from any state). Priorities: low / medium / high / urgent. Severities (optional): minor / major / critical. Types: epic / story / task / subtask / bug.
Security
The server can only do what the PAT's scope allows. Attempts to write without the relevant manage permission return a 403 from the API and are surfaced as an error in Claude's response. The PAT is revocable at any time from Profile → Access tokens in the Sciple dashboard — revoking it immediately cuts off the server's access without any config change.
Development
To work on the server itself:
git clone https://github.com/navaganeshr/sciple-mcp
cd sciple-mcp
uv sync --all-groups
uv run python -m pytest -qReleases are tag-driven via a GitHub Actions workflow using PyPI Trusted Publishing (OIDC). To cut a release:
Bump
versioninpyproject.toml.Commit, then
git tag vX.Y.Z && git push origin vX.Y.Z.Approve the
pypienvironment deployment in the Actions UI.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseCqualityAmaintenanceEnables AI assistants to fully access and manage SyncroMSP resources including tickets, customers, assets, invoices, and over 30 resource types through 180+ API endpoints.Last updated100558MIT
- AlicenseBqualityDmaintenanceEnables AI assistants to fully control a Tracecat SOAR platform instance through natural language, managing workflows, actions, cases, secrets, tables, schedules, graphs, and more.Last updated94314MIT
- Alicense-qualityCmaintenanceEnables AI assistants to interact with ServiceNow instances for data retrieval, record management, and workflow execution via the ServiceNow API.Last updatedMIT
- Alicense-qualityCmaintenanceEnables AI assistants to operate a Splunk SOAR instance headlessly via its REST API, supporting container triage, playbook authoring and execution, and asset management.Last updated1MIT
Related MCP Connectors
Manage SRG+ hubs, channels, content, assets, users, and workspaces from any MCP-aware AI agent.
Connect AI assistants to Stellary projects, boards, documents, and governed agent workflows.
Create, test, publish, and manage Dreamlit notification workflows from AI clients.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/sciple-idp/sciple-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server