Auth infrastructure for coding agents. User pools, secrets vault, token management. As easy as git.
MCPpedia last refreshed this data
io.github.jyswee/authshore is an MCP server that auth infrastructure for coding agents. User pools, secrets vault, token management. As easy as git. Its tool list has not been published yet, requires no API key, and scores 80/100 on MCPpedia's security, maintenance and efficiency rubric.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"authshore": {
"env": {
"AUTHSHORE_API_KEY": "as_your_key_here"
},
"args": [
"mcp-serve"
],
"command": "as"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
Auth infrastructure for coding agents — user pools, secrets vault, token management. As easy as git.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y 'authshore' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked authshore against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in devops / security
MCP server for using the GitLab API
MCP server for Komodo - manage Docker containers, servers, stacks, and deployments via AI
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
MCP Server for kubernetes management commands
MCP Security Weekly
Get CVE alerts and security updates for io.github.jyswee/authshore and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
Auth infrastructure for coding agents — user pools, secrets vault, token management. As easy as git.
git for your code. as for your auth.
Your agent can scaffold a whole app in an afternoon — then stalls the moment it needs auth. It hardcodes secrets into .env files it later commits, rolls its own JWT handling, and leaves you wiring up Cognito by hand. AuthShore is the auth layer your agent runs itself: one install, and it provisions user pools, stores secrets encrypted, and mints, validates and refreshes tokens — from the terminal, with no console to click through.
Works with: Claude Code · Cursor · Cline · Windsurf · Aider · Codex · any MCP client
Real terminal sessions against the live API — click a GIF for the full video.
| Zero to auth in 60s | Secrets vault | Tokens & pools |
|---|---|---|
![]() | ![]() | ![]() |
More demos: authshore.ai/#demo
npm install -g authshore
The npm package is authshore; the command is as.
# 1. Create a project — free plan, API key active immediately, no card
as signup my-project --email you@example.com --local
# 2. Create a user pool
as pool create main
# 3. Store a secret (encrypted at rest, versioned)
as secret set DATABASE_URL "postgres://user:pass@host:5432/db"
# 4. Sign up a user in your pool
as pool auth signup main --email user@example.com --password SecurePass123!
# Full reference
as help
Every project gets isolated user pools your agent manages from the terminal: create pools, add users, run full signup/signin flows that return real JWT pairs.
as pool create main # create a pool
as pool list # list pools
as pool users <id> # list users in a pool
as pool user add <id> --email E --password P
as pool auth signup <id> --email E --password P # returns access + refresh tokens
as pool auth signin <id> --email E --password P
Encrypted, versioned key-value storage scoped to your project. Your agent stores third-party keys once and reads them at deploy time — nothing sensitive left sitting in the repo.
as secret set STRIPE_KEY "sk_..." --env production
as secret get STRIPE_KEY # decrypted read
as secret list
as secret versions STRIPE_KEY # full version history
as secret delete STRIPE_KEY
The JWT plumbing agents usually hand-roll, done right once.
as token validate <jwt> # verify signature + expiry, show claims
as token refresh <refresh-token> # rotate the pair
as token revoke <token> # kill a compromised token
Prefer tools over a CLI? as ships an MCP server. Point Claude Code (or any MCP client) at it and your agent gets 18 native tools: pools, users, secrets, tokens, project status.
claude mcp add authshore --env AUTHSHORE_API_KEY=as_y
... [View full README on GitHub](https://github.com/jyswee/authshore#readme)