Spryntworks logo
Spryntworks

Developers

Spryntworks DEV RESOURCES

Every machine-readable surface Spryntworks publishes — an MCP server AI assistants can call natively, a llms.txt agent index, Markdown versions of every page, and standard crawlers' files.

MCP server

Spryntworks runs a Model Context Protocol (MCP) server over Streamable HTTP. Point Claude, ChatGPT, Cursor, or any MCP client at https://spryntworks.com/mcp to query services, pricing, company info, and blog content as native tools. A discovery descriptor lives at /.well-known/mcp.json.

Available tools:

  • get_company_profile
  • get_services_and_pricing
  • get_contact_info
  • list_blog_posts
  • get_blog_post (slug)

Example handshake:

curl -X POST https://spryntworks.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{
        "protocolVersion":"2025-06-18",
        "capabilities":{},
        "clientInfo":{"name":"my-agent","version":"1.0"}}}'

OpenAPI specification

Every machine-readable endpoint on this site — the MCP JSON-RPC endpoint included — is described by an OpenAPI 3.1 specification with unique operation IDs, typed parameters, and response schemas. Load it into any OpenAPI-aware tool or LLM function-calling setup:

llms.txt agent index

The canonical agent-readable index of this site, including when-to-use guidance, follows the llmstxt.org format:

Markdown mirrors

Send Accept: text/markdown on any page URL to get its Markdown representation, or fetch the static mirrors directly:

curl -H 'Accept: text/markdown' https://spryntworks.com/
# or equivalently:
curl https://spryntworks.com/md/home.md
curl https://spryntworks.com/md/blog.md
curl https://spryntworks.com/md/blog/<slug>.md

Crawler files

Structured data

The homepage embeds schema.org Organization JSON-LD with contact points and postal address for entity verification.

Questions

Building an integration or an agent that needs more than these tools? Email ayush@spryntworks.com — we build custom MCP servers and API integrations for clients too.