Frisian MCP (Django)
Server Details
Your DRF API as MCP tools — 1,800 endpoints become 16 dispatchers, permissioned by Django.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- Frisian-MCP/frisian-mcp
- GitHub Stars
- 6
- Server Listing
- frisian-mcp
Available Tools
4 toolsdemoAInspect
Live working demo of frisian-mcp. Three capability groups: crm (contacts, companies, deals, tasks, memos), ops (automation, infrastructure, notifications, security, compliance), platform (analytics, data, reporting, integrations, users). All reads and writes are real and persistent.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | ||
| page | No | ||
| action | No | Operation to perform. Omit or use 'help' to list all available actions and their required parameters. | |
| params | No | Action-specific parameters. crm: {resource, action}; ops: {group, action}; platform: {group, action}. 'mode', 'page', 'page_size' and 'filter_keys' are top-level ONLY on a continuation call (i.e. alongside a 'continuation_token'); otherwise they are ordinary action parameters and belong here. | |
| page_size | No | ||
| filter_keys | No | ||
| continuation_token | No | From a probe response. Send at the TOP LEVEL, not inside 'params'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden. The statement that all reads and writes are real and persistent is a meaningful and important warning about side effects. It could further explain help behavior, continuation semantics, or the full mutation surface, but the core safety-relevant trait is disclosed.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loads the tool's identity, packs the capability groups into a scannable list, and closes with the most important behavioral warning. Every sentence earns its place with no redundancy or filler.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a broad tool with seven parameters, nested objects, no output schema, and no annotations. The description plus the schema's action/params/continuation_token guidance cover capability selection and basic continuation, but the description does not convey an end-to-end call pattern, expected response shape, or how to discover specific actions beyond the help hint in the schema. It is adequate but not complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is low at 43%, so the description helps by enumerating the concrete resources and groups that can be used inside the params object. It does not explain the mode, page, page_size, or filter_keys parameters, but the schema already provides some structural guidance for those, making the overall parameter context adequate though incomplete.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as a live working demo of frisian-mcp and outlines the three capability groups with their subdomains. This is more than a tautology and helps distinguish the tool as an interactive demonstration surface rather than documentation or setup tooling.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The wording implies the tool is for hands-on exploration of a live demo system, and the sibling names (docs, install, troubleshooting) make the contrast fairly clear. However, it does not explicitly state when to use this tool versus those siblings, nor does it describe exclusions or recommended first steps.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
docsCInspect
Start here — frisian-mcp documentation and server guide. Actions: about (server identity and links), getting_started (step-by-step adoption guide), integrations (Django/DRF config reference), security (auth model, OAuth, API keys, tiers), demo (explore the live demo endpoints), documents (browse all documentation articles), rag (semantic and full-text doc search).
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | ||
| page | No | ||
| action | No | Operation to perform. Omit or use 'help' to list all available actions and their required parameters. | |
| params | No | Action-specific parameters. about: {version}; getting_started: {version}; integrations: {version}; security: {version}; demo: {surface}; documents: {sub_action, slug, id, category, limit, offset}; rag: {query, limit, offset, category}. 'mode', 'page', 'page_size' and 'filter_keys' are top-level ONLY on a continuation call (i.e. alongside a 'continuation_token'); otherwise they are ordinary action parameters and belong here. | |
| page_size | No | ||
| filter_keys | No | ||
| continuation_token | No | From a probe response. Send at the TOP LEVEL, not inside 'params'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It does list the available actions and their purposes, which is useful, but it does not state whether operations are read-only, how the help flow works, how pagination or continuation tokens behave, or what side effects or auth dependencies exist.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense, front-loaded sentence with no filler. The action list is compact and each phrase earns its place, though it could have been slightly clearer as a structured list rather than a long comma-separated run-on.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a routing-style tool with 7 parameters, nested objects, and continuation-token mechanics, yet there is no output schema or annotation support. The description covers only action names and omits the invocation patterns needed for pagination, continuation calls, and mode behavior, leaving an agent under-equipped without deep schema inspection.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 43%, and the description itself does not compensate for the gap. It mentions action names but never explains top-level parameters like mode, page, page_size, filter_keys, or continuation_token, which have non-obvious rules around continuation calls and placement inside params.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as the entry point to frisian-mcp documentation and server guide, and enumerates seven concrete actions with one-line semantic labels. This distinguishes it from siblings like demo, install, and troubleshooting. It loses a point because 'Start here' is an orienting instruction rather than a specific verb+resource statement.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
'Start here' implies this tool should be used first, giving some usage context. However, there are no explicit when-to-use versus when-not-to-use statements, and the description does not clarify when to use the docs tool's demo action versus the sibling demo tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
installBInspect
Installation guides for frisian-mcp integrations (Django framework tier). Actions: nautobot, netbox, paperless, edx. Each action returns the files changed to make the integration work, organised by version. Pass query for semantic search within the section.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | ||
| page | No | ||
| action | No | Operation to perform. Omit or use 'help' to list all available actions and their required parameters. | |
| params | No | Action-specific parameters. nautobot: (no params); netbox: (no params); paperless: (no params); edx: (no params). 'mode', 'page', 'page_size' and 'filter_keys' are top-level ONLY on a continuation call (i.e. alongside a 'continuation_token'); otherwise they are ordinary action parameters and belong here. | |
| page_size | No | ||
| filter_keys | No | ||
| continuation_token | No | From a probe response. Send at the TOP LEVEL, not inside 'params'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral disclosure burden. It does reveal that the tool returns 'files changed' organized by version and supports semantic search, indicating an informational, read-only purpose rather than an actual installation action. However, it does not explain pagination, continuation tokens, or whether any side effects exist, leaving behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single dense sentence with no filler. It front-loads the core purpose, then lists actions, output format, and search capability. It loses a point for trying to cram multiple concepts (actions, output organization, semantic search) into one sentence without structural separation.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This tool has 7 parameters, nested objects, a continuation-token mechanism, and no output schema, so the description must explain how to drive the tool correctly. It does not describe mode behaviors, continuation calls, or the relationship between top-level and nested parameters. The undocumented 'query' requirement further decreases completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is only 43%, so the description needed to compensate. It names the four actions and their outputs, but it introduces a 'query' parameter that does not appear anywhere in the input schema, which is confusing. It also does not clarify the meaning of mode, page, page_size, filter_keys, or continuation_token beyond what the schema already states.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly identifies the tool as providing installation guides for specific integrations (nautobot, netbox, paperless, edx) and explains what each action returns. It is distinct from the sibling tools like docs or troubleshooting because it is explicitly installation-focused, though it lacks an explicit verb like 'retrieve' or 'install'.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies this is the tool to use for installation guidance for the listed integrations, and it mentions semantic search within the section. However, it does not explicitly state when to prefer this over docs, demo, or troubleshooting, nor does it describe the available modes or how pagination/filtering should be used.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
troubleshootingCInspect
Troubleshooting guides for frisian-mcp integrations (Django framework tier). Actions: nautobot, netbox, paperless, edx. Each action returns diagnostic guides and relevant files for that integration. Pass query for semantic search within the section.
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | ||
| page | No | ||
| action | No | Operation to perform. Omit or use 'help' to list all available actions and their required parameters. | |
| params | No | Action-specific parameters. nautobot: (no params); netbox: (no params); paperless: (no params); edx: (no params). 'mode', 'page', 'page_size' and 'filter_keys' are top-level ONLY on a continuation call (i.e. alongside a 'continuation_token'); otherwise they are ordinary action parameters and belong here. | |
| page_size | No | ||
| filter_keys | No | ||
| continuation_token | No | From a probe response. Send at the TOP LEVEL, not inside 'params'. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does state that each action returns diagnostic guides and relevant files and that a query enables semantic search, but it omits important behavioral details such as how mode affects output, when pagination or continuation tokens are needed, and what happens when action is omitted or set to 'help'.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler, and the core purpose and action list are front-loaded. The note about semantic search is useful, though the detailed parameter semantics were pushed to the schema rather than being summarized here.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a 7-parameter tool with a nested params object, no output schema, and no annotations, so the description must carry a lot of weight. It establishes the tool's purpose and available integrations but omits essential call semantics such as how mode and pagination interact, when continuation_token must be top-level, and what the response structure looks like. An agent would likely need to probe the tool or consult additional documentation before calling it confidently.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is only 43%, so the description should compensate, but it only adds 'Pass query for semantic search' and names the four actions. The parameters mode, page, page_size, filter_keys, and continuation_token are not explained in the description, leaving the agent to rely on the sparse schema notes and imperfect inference.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description identifies the tool as providing troubleshooting guides for frisian-mcp integrations and explicitly names the four supported actions: nautobot, netbox, paperless, and edx. It is clear that the tool returns diagnostic guides and relevant files for a given integration, which differentiates it from the sibling tools demo, docs, and install. A more explicit verb would make it stronger, but the resource and scope are specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not say when to use this tool versus the sibling tools demo, docs, or install, and it gives no exclusions or alternatives. It implies the tool is for troubleshooting integrations and mentions passing a query for semantic search, but leaves the mode, pagination, and help-action behaviors to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Sixteen years of API research as MCP tools — stories, areas, governance blocks & services
Discover and call 10,000+ production APIs from one MCP server. Pay-per-call billing for AI agents.
One MCP URL for all your connectors — scoped writes, enforced constraints, and a full audit trail.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAutomatically exposes Django REST Framework endpoints as MCP tools with zero configuration, supporting multiple transports and authentication.MIT
- AlicenseNot gradedqualityCmaintenanceExposes Django REST Framework APIs as MCP tools for AI agents via the Model Context Protocol, with automatic discovery and security.1MIT
- AlicenseNot gradedqualityCmaintenanceExposes Django REST Framework API documentation via MCP for AI coding agents to read, understand, and write frontend integration code.16MIT
- AlicenseNot gradedqualityBmaintenanceIntrospects a Django REST API's OpenAPI schema and exposes each endpoint as an MCP tool, enabling Claude or any MCP client to interact with the API via natural language.MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
The four top-level tools are clearly separated by intent: try the product (demo), read reference material (docs), set up integrations (install), and resolve problems (troubleshooting). Minor overlap exists because docs has a 'demo' sub-action and install/troubleshooting share the same integration names, but descriptions generally make the boundary clear.
Tool names are short, lowercase, and self-descriptive, making them easy to scan, but they mix verb and noun/gerund forms (install vs docs/troubleshooting). Nested actions also follow different conventions (getting_started vs nautobot), so there is no strong predictible pattern.
Four tools is well-scoped for a guide-oriented server. Each tool earns its place in the adoption and support lifecycle, and each contains useful sub-actions, so the count feels appropriate without being bloated.
The set covers the core journey: discover docs, try the demo, install an integration, and troubleshoot problems. The main gaps are that install/troubleshooting are scoped to four listed integrations and there is no explicit upgrade/uninstall surface, though docs may cover those indirectly.