Getting it into your agent
One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.
npx skills add Jignesh-Ponamwar/skills-mcp --skill graphql-apigit clone --depth 1 https://github.com/Jignesh-Ponamwar/skills-mcpWrote this? Show the measurements
A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.
[](https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/graphql-api)<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/graphql-api"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/graphql-api/github.svg" alt="Measured on agentmods" height="20"></a>Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.
<a href="https://agentmods.dev/skills/jignesh-ponamwar/skills-mcp/graphql-api"><img src="https://agentmods.dev/badge/skills/jignesh-ponamwar/skills-mcp/graphql-api.svg" alt="Reviewed on agentmods" width="80" height="20"></a>What it costs to keep this loaded
Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.
| Model | Per session | Once invoked |
|---|---|---|
| Fable 5.1 | $0.00103 | $0.02804 |
| Opus 5 | $0.00051 | $0.01402 |
| Sonnet 5 | $0.00021 | $0.00561 |
| Haiku 4.5 | $0.00010 | $0.00280 |
Grade A, and why
graphql-api scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.
A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.
Nothing flagged
None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.
How it starts
The opening of the file, as written. The whole thing — 454 lines — stays where its author put it; the contents beside it link to each section on GitHub.
GraphQL API Skill
Step 1: Choose Your Stack
| Use Case | Recommendation |
|---|---|
| TypeScript server | GraphQL Yoga + graphql |
| Python server | Strawberry (code-first) |
| React client | Apollo Client or urql |
| Next.js API | GraphQL Yoga in Route Handler |
| Schema-first TypeScript | GraphQL Code Generator |
Step 2: Schema Design Principles
# ✅ Good schema design
type User {
id: ID!
name: String!
email: String!
posts(first: Int = 10, after: String): PostConnection!
createdAt: DateTime!
}
type Post {
id: ID!
title: String!
content: String!
author: User!
publishedAt: DateTime
status: PostStatus!
}
enum PostStatus {
DRAFT
PUBLISHED
ARCHIVED
}
# Relay-style cursor pagination (preferred for large datasets)
type PostConnection {
edges: [PostEdge!]!
pageInfo: PageInfo!
totalCount: Int!
}
type PostEdge {
node: Post!
cursor: String!
}
type PageInfo {
hasNextPage: Boolean!
hasPreviousPage: Boolean!
startCursor: String
endCursor: String
}
# Input types for mutations (keep separate from output types)
input CreatePostInput {
title: String!
content: String!
}
input UpdatePostInput {
id: ID!
title: String
content: String
}
# Mutation return types - always return the mutated object
type CreatePostPayload {
post: Post
errors: [UserError!]!
}
type UserError {
field: String
message: String!
}
type Query {
me: User
user(id: ID!): User
post(id: ID!): Post
posts(first: Int, after: String, status: PostStatus): PostConnection!
}
type Mutation {
createPost(input: CreatePostInput!): CreatePostPayload!
updatePost(input: UpdatePostInput!): CreatePostPayload!
deletePost(id: ID!): Boolean!
}
type Subscription {
postCreated: Post!
postUpdated(id: ID!): Post!
}
Step 3: Server Setup (TypeScript + GraphQL Yoga)
npm install graphql graphql-yoga
// app/api/graphql/route.ts (Next.js App Router)
import { createYoga, createSchema } from 'graphql-yoga'
import { typeDefs } from './schema'
import { resolvers } from './resolvers'
import { createContext } from './context'
const yoga = createYoga({
schema: createSchema({ typeDefs, resolvers }),
context: createContext,
graphqlEndpoint: '/api/graphql',
fetchAPI: { Response, Request, ReadableStream },
})
export { yoga as GET, yoga as POST }
// context.ts
import { NextRequest } from 'next/server'
export async function createContext({ request }: { request: NextRequest }) {
const token = request.headers.get('authorization')?.replace('Bearer ', '')
const user = token ? await verifyToken(token) : null
return { user, db }
}
What this file has done since we first saw it
Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.
- 9d ago First seen · 454 lines · 103 tokens per session scan A 47abf445e464
graphql-api is a skill published in the GitHub repository Jignesh-Ponamwar/skills-mcp (7 stars, last pushed 3mo ago), licensed Apache-2.0. It adds 103 tokens to every session and 2,804 once invoked, about $0.0005 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.
Other skills, from other repositories
aws-serverless-eda
AWS serverless and event-driven architecture expert based on Well-Architected Framework. Use when building serverless APIs, Lambda functions, REST APIs, microservices, or async workflows.
agentmail
Email infrastructure for AI agents. Create accounts, send/receive emails, manage webhooks, and check karma balance via the AgentMail API.
api-rate-limit-handler
Implement bounded, idempotency-aware API throttling, backoff, and retry handling for 429 and transient 5xx responses.
api-security
Authorized security assessment of REST, GraphQL, WebSocket, and SOAP APIs: discovery, authentication and authorization flaws (BOLA/IDOR, JWT/OAuth), rate-limit testing, and a structured multi-phase methodology.
aria
Designs the data model, API contracts, and structural foundation of the system.
api-security-testing
API security testing workflow for REST and GraphQL APIs covering authentication, authorization, rate limiting, input validation, and security best practices.